Fixed double question mark in RTMP URL bullshit
This commit is contained in:
parent
bfe95d0bb3
commit
1eedda4a4e
1 changed files with 3 additions and 7 deletions
|
@ -44,13 +44,9 @@ namespace Mist{
|
||||||
streamOut = streamName;
|
streamOut = streamName;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (streamName.rfind('?') != std::string::npos){
|
std::string origTarget = config->getOption("target", true)[0u].asStringRef();
|
||||||
streamName = streamName.substr(0, streamName.rfind('?'));
|
if (origTarget.rfind('?') != std::string::npos){
|
||||||
}
|
parseVars(origTarget.substr(origTarget.rfind('?') + 1));
|
||||||
if (streamOut.rfind('?') != std::string::npos){
|
|
||||||
std::string tmpVars = streamOut.substr(streamOut.rfind('?') + 1);
|
|
||||||
streamOut = streamOut.substr(0, streamOut.rfind('?'));
|
|
||||||
parseVars(tmpVars);
|
|
||||||
}
|
}
|
||||||
initialize();
|
initialize();
|
||||||
INFO_MSG("About to push stream %s out. Host: %s, port: %d, app: %s, stream: %s", streamName.c_str(), host.c_str(), port, app.c_str(), streamOut.c_str());
|
INFO_MSG("About to push stream %s out. Host: %s, port: %d, app: %s, stream: %s", streamName.c_str(), host.c_str(), port, app.c_str(), streamOut.c_str());
|
||||||
|
|
Loading…
Add table
Reference in a new issue