Bug #2048
TvHeadend doesn't use icons provided by XMLTV
0%
Description
The icons provided by the XMLTV content are not used to change the channel icons.
History
Updated by Paul Nolan over 10 years ago
Having just lost a lot of my channel settings, it would be great if this was fixed. At the moment it looks like the code to perform channel updates is not yet finalised.... or needs to be compiled in...
#if TODO_CHAN_UPDATE
if (ec->name && epggrab_channel_rename)
channel_rename(ch, ec->name);
if (ec->number>0 && epggrab_channel_renumber)
channel_set_number(ch, ec->number);
if (ec->icon && epggrab_channel_reicon)
channel_set_icon(ch, ec->icon);
#endif
Updated by Sam Stenvall over 10 years ago
Have you tried removing the #if/#endif to see if it works? It looks like it was commented out during the rewrite and someone forgot to re-enable it.
Updated by Adam Sutton over 10 years ago
It's commented out for a good reason It won't work, things have been restructured and adding that code back in requires reworking to fit the new (slightly more flexible but in turn more complex) structures.
Adam