Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
iptv auto: add support for m3u group-title
  • Loading branch information
perexg committed Nov 24, 2016
1 parent f2371cf commit 38c9e89
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/input/mpegts/iptv/iptv_auto.c
Expand Up @@ -120,7 +120,8 @@ iptv_auto_network_process_m3u_item(iptv_network_t *in,

epgid = htsmsg_get_str(item, "tvg-id");
epgcfg = _epgcfg_from_str(htsmsg_get_str(item, "tvh-epg"));
tags = htsmsg_get_str(item, "tvh-tags");
tags = htsmsg_get_str(item, "tvh-tags");
if (!tags) tags = htsmsg_get_str(item, "group-title");
if (tags) {
tags = n = strdupa(tags);
while (*n) {
Expand Down

0 comments on commit 38c9e89

Please sign in to comment.