summaryrefslogtreecommitdiff
path: root/epgclone.c
diff options
context:
space:
mode:
authorMatti Lehtimäki <matti.lehtimaki@gmail.com>2014-08-22 20:40:13 +0200
committerMatti Lehtimäki <matti.lehtimaki@gmail.com>2014-08-22 20:40:13 +0200
commitec36c62f4360daf9d39564e040ac4b181baf4316 (patch)
tree7c1500ccfe883d790910f13186557ebd027f2bac /epgclone.c
parent81de9f8c2e2c3223789ad1bed1f00d58c773d7b8 (diff)
downloadvdr-plugin-epgfixer-ec36c62f4360daf9d39564e040ac4b181baf4316.tar.gz
vdr-plugin-epgfixer-ec36c62f4360daf9d39564e040ac4b181baf4316.tar.bz2
Fix using channelIDs in EPG cloning, thanks to Guy Martin.
Diffstat (limited to 'epgclone.c')
-rw-r--r--epgclone.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epgclone.c b/epgclone.c
index 9a092fa..4c7b28e 100644
--- a/epgclone.c
+++ b/epgclone.c
@@ -51,7 +51,7 @@ void cEpgClone::CloneEvent(cEvent *Source, cEvent *Dest) {
if (dest_num)
channelID = Channels.GetByNumber(dest_num)->GetChannelID();
else
- channelID.FromString(dest_str);
+ channelID = tChannelID::FromString(dest_str);
AddEvent(Dest, channelID);
}