Commit 56c38ae8 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Correct behaviour of passing a MRL to Sout dialog. Really close #1998

parent 3d9e558f
...@@ -364,7 +364,7 @@ void OpenDialog::stream( bool b_transcode_only ) ...@@ -364,7 +364,7 @@ void OpenDialog::stream( bool b_transcode_only )
for( int i = 1; i < listMRL.size(); i++ ) for( int i = 1; i < listMRL.size(); i++ )
{ {
if( listMRL[i].at( 0 ) == ':' ) if( listMRL[i].at( 0 ) == ':' )
soutMRL.append( listMRL[i] ); soutMRL.append( " " + listMRL[i] );
else else
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment