]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Include XMLTV channel name in EPG source selection. Fixes #1164.
authorAdam Sutton <dev@adamsutton.me.uk>
Tue, 11 Sep 2012 12:57:12 +0000 (13:57 +0100)
committerAdam Sutton <dev@adamsutton.me.uk>
Tue, 11 Sep 2012 13:24:12 +0000 (14:24 +0100)
src/epggrab/channel.c

index cdb5c92bad7f5a6ddb7e5343053efa1a04d09058..a3846bf9ecffdbf6d897f673ec88b32a002f32e8 100644 (file)
@@ -188,7 +188,7 @@ htsmsg_t *epggrab_channel_list ( void )
           htsmsg_add_str(e, "name",   ec->name);
         sprintf(name, "%s|%s", mod->id, ec->id);
         htsmsg_add_str(e, "mod-id", name);
-        sprintf(name, "%s: %s", mod->name, ec->id);
+        sprintf(name, "%s: %s (%s)", mod->name, ec->name, ec->id);
         htsmsg_add_str(e, "mod-name", name);
         htsmsg_add_msg(m, NULL, e);
       }