Skip to content
This repository has been archived by the owner on Apr 15, 2023. It is now read-only.

Commit

Permalink
tvheadend addon: use the supplied channel number instead of the chann…
Browse files Browse the repository at this point in the history
…el id
  • Loading branch information
opdenkamp committed Feb 18, 2011
1 parent ec3abd2 commit 1b1c485
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xbmc/pvrclients/tvheadend/HTSPData.cpp
Expand Up @@ -178,11 +178,12 @@ PVR_ERROR cHTSPData::RequestChannelList(PVRHANDLE handle, int radio)
PVR_CHANNEL tag;
memset(&tag, 0 , sizeof(tag));
tag.uid = channel.id;
tag.number = channel.id;
tag.number = channel.num;
tag.name = channel.name.c_str();
tag.callsign = channel.name.c_str();
tag.radio = channel.radio;
tag.encryption = channel.caid;
tag.iconpath = channel.icon.c_str();
tag.input_format = "";
tag.stream_url = "";
tag.bouquet = 0;
Expand Down

0 comments on commit 1b1c485

Please sign in to comment.