From: Adam Sutton Date: Tue, 11 Sep 2012 12:57:12 +0000 (+0100) Subject: Include XMLTV channel name in EPG source selection. Fixes #1164. X-Git-Tag: 3.3~69 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=255da95dbb8c3dbef5a7e8a0a7a6728c48781dc8;p=thirdparty%2Ftvheadend.git Include XMLTV channel name in EPG source selection. Fixes #1164. --- diff --git a/src/epggrab/channel.c b/src/epggrab/channel.c index cdb5c92ba..a3846bf9e 100644 --- a/src/epggrab/channel.c +++ b/src/epggrab/channel.c @@ -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); }