Removed automatic wildcard addition for DTSC input URLs

This commit is contained in:
Thulinma 2018-05-03 11:32:24 +02:00
parent 2e65c1e431
commit f934d15a78

View file

@ -158,10 +158,6 @@ namespace Mist {
std::string givenStream = config->getString("streamname"); std::string givenStream = config->getString("streamname");
if (streamName == "") { if (streamName == "") {
streamName = givenStream; streamName = givenStream;
}else{
if (givenStream.find("+") != std::string::npos){
streamName += givenStream.substr(givenStream.find("+"));
}
} }
srcConn = Socket::Connection(host, port, true); srcConn = Socket::Connection(host, port, true);
if (!srcConn.connected()){ if (!srcConn.connected()){