From 00576fd7374e7a7b2506047d16522fd0ca77c365 Mon Sep 17 00:00:00 2001 From: Adam Sutton Date: Fri, 17 Aug 2012 15:35:08 +0100 Subject: [PATCH] Put grabber channel id in the display rather than the name, its less likely to have conflicts --- src/epggrab/channel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/epggrab/channel.c b/src/epggrab/channel.c index 37083e59..cdb5c92b 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->name ?: "unknown"); + sprintf(name, "%s: %s", mod->name, ec->id); htsmsg_add_str(e, "mod-name", name); htsmsg_add_msg(m, NULL, e); }