Commit 07a4bafe authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Do not apply playlist path to full URIs

parent 3a9a03f9
......@@ -243,6 +243,8 @@ char *ProcessMRL( const char *psz_mrl, const char *psz_prefix )
if( isalpha(psz_mrl[0]) && psz_mrl[1] == ':' )
goto uri;
#endif
if( strstr( psz_mrl, "://" ) )
return strdup( psz_mrl );
/* This a relative path, prepend the prefix */
char *ret;
......
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