Skip to content
Snippets Groups Projects
Commit 4e05f93d authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

playlist: rectify fallback for absolute URLs

parent 2922a6c0
No related branches found
No related tags found
No related merge requests found
......@@ -282,6 +282,9 @@ char *ProcessMRL(const char *str, const char *base)
free(rel);
return abs;
#else
if (strstr(str, "://") != NULL)
return strdup(str);
const char *split = strrchr(base, '/');
char *abs;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment