Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
IPTV: autonet - allow pipe:// URLs - quickfix, fixes #3221
  • Loading branch information
perexg committed Oct 29, 2015
1 parent 4e15477 commit e4f37cb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/input/mpegts/iptv/iptv_auto.c
Expand Up @@ -128,6 +128,10 @@ iptv_auto_network_process_m3u_item(iptv_network_t *in,
}

urlinit(&u);

if (strncmp(url, "pipe://", 7) == 0)
goto skip_url;

if (urlparse(url, &u))
return;
if (u.host == NULL || u.host[0] == '\0')
Expand Down Expand Up @@ -171,6 +175,7 @@ iptv_auto_network_process_m3u_item(iptv_network_t *in,
url = url2;
}

skip_url:
if (last_url) {
if (charset_id) {
x = intlconv_to_utf8safestr(charset_id, name, strlen(name)*2);
Expand Down

0 comments on commit e4f37cb

Please sign in to comment.