Put grabber channel id in the display rather than the name, its less likely to have conflicts

This commit is contained in:
Adam Sutton 2012-08-17 15:35:08 +01:00
parent 3f1b5474f1
commit 00576fd737

View 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->name ?: "unknown");
sprintf(name, "%s: %s", mod->name, ec->id);
htsmsg_add_str(e, "mod-name", name);
htsmsg_add_msg(m, NULL, e);
}