Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
IPTV: m3u parser - another fix for url parser - reverse condition
  • Loading branch information
perexg committed Oct 31, 2015
1 parent 7d0e632 commit 496a1b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/iptv/iptv_http.c
Expand Up @@ -162,7 +162,7 @@ iptv_http_complete
if ((p = strchr(p, '/')) != NULL)
*p = '\0';
}
if (!urlparse(s, &u))
if (urlparse(s, &u))
goto invalid;
snprintf(url2, 512, "%s%s", s, url);
}
Expand Down

0 comments on commit 496a1b9

Please sign in to comment.