Fixed urldecoding for receiving RTMP pushes.
This commit is contained in:
parent
fcdf788596
commit
4a3c2a055b
1 changed files with 1 additions and 1 deletions
|
@ -589,7 +589,7 @@ namespace Mist {
|
|||
} //getStreamLength
|
||||
if ((amfData.getContentP(0)->StrValue() == "publish")) {
|
||||
if (amfData.getContentP(3)) {
|
||||
streamName = amfData.getContentP(3)->StrValue();
|
||||
streamName = Encodings::URL::decode(amfData.getContentP(3)->StrValue());
|
||||
reqUrl += "/"+streamName;//LTS
|
||||
|
||||
/*LTS-START*/
|
||||
|
|
Loading…
Add table
Reference in a new issue