Allow '@' in VLC mrl

Close #486

(cherry picked from commit 2f830a099d)
This commit is contained in:
Geoffrey Métais
2018-03-02 16:26:15 +01:00
parent 1b0f1a5a8b
commit 5e4bd5b878

View File

@@ -126,6 +126,6 @@ public class Tools {
static String encodeVLCMrl(String mrl) {
if (mrl.startsWith("/")) mrl = "file://"+mrl;
return VLCUtil.encodeVLCString(Uri.encode(Uri.decode(mrl), ":/"));
return VLCUtil.encodeVLCString(Uri.encode(Uri.decode(mrl), ":/@"));
}
}