Commit 71079c79 authored by Rafaël Carré's avatar Rafaël Carré

Replaces url unescaping by url decoding in xspf import

Thanks to courmisch for finding the issue
Closes #721
parent 5e2ac015
...@@ -516,7 +516,7 @@ static vlc_bool_t parse_track_node COMPLEX_INTERFACE ...@@ -516,7 +516,7 @@ static vlc_bool_t parse_track_node COMPLEX_INTERFACE
FREE_ATT(); FREE_ATT();
return VLC_FALSE; return VLC_FALSE;
} }
psz_uri = unescape_URI_duplicate( psz_value ); psz_uri = decode_URI_duplicate( psz_value );
if( psz_uri ) if( psz_uri )
{ {
......
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