diff options
author | horchi <vdr@jwendel.de> | 2018-02-16 08:04:37 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2018-02-16 08:04:37 +0100 |
commit | 81a3b0255bbf74bd6d6fe17cef394a4d4f338b09 (patch) | |
tree | 7fa3046670ef31dbbf01eafac50435d07372b968 /timer.c | |
parent | 4b7842feee923e0ab599fcfb40138df489682d4a (diff) | |
download | vdr-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; |