summaryrefslogtreecommitdiff
path: root/timer.c
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2018-02-16 08:04:37 +0100
committerhorchi <vdr@jwendel.de>2018-02-16 08:04:37 +0100
commit81a3b0255bbf74bd6d6fe17cef394a4d4f338b09 (patch)
tree7fa3046670ef31dbbf01eafac50435d07372b968 /timer.c
parent4b7842feee923e0ab599fcfb40138df489682d4a (diff)
downloadvdr-plugin-epg2vdr-81a3b0255bbf74bd6d6fe17cef394a4d4f338b09.tar.gz
vdr-plugin-epg2vdr-81a3b0255bbf74bd6d6fe17cef394a4d4f338b09.tar.bz2
2018-02-13 version 1.1.84 (horchi)\n - added: Timer 'type' to timers menu\n\n1.1.84
Diffstat (limited to 'timer.c')
-rw-r--r--timer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/timer.c b/timer.c
index 07feffb..0bdc2b3 100644
--- a/timer.c
+++ b/timer.c
@@ -595,7 +595,7 @@ int cUpdate::updateTimerTable()
continue;
// count my timers to detect truncated (epmty) table
- // on empty table ignore known timer ids
+ // -> on empty table ignore known timer ids
cnt++;
@@ -613,8 +613,8 @@ int cUpdate::updateTimerTable()
// compare by start-time and channelid
- if (t->StartTime() == timerDb->getIntValue("StartTime") &&
- strcmp(t->Channel()->GetChannelID().ToString(), timerDb->getStrValue("ChannelId")) == 0)
+ if (t->StartTime() == timerDb->getIntValue("STARTTIME") &&
+ strcmp(t->Channel()->GetChannelID().ToString(), timerDb->getStrValue("CHANNELID")) == 0)
{
exist = yes;
break;