diff options
author | horchi <vdr@jwendel.de> | 2020-08-18 18:13:15 +0200 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2020-08-18 18:13:15 +0200 |
commit | 6accbdd431ad2e2e4d7b1568840f7566e36e024d (patch) | |
tree | 1df5f717ebc32cb1d6fc075e1e23aee980003e55 /timer.c | |
parent | d67a088d3052497ad082174c15af311a7f182894 (diff) | |
download | vdr-plugin-epg2vdr-6accbdd431ad2e2e4d7b1568840f7566e36e024d.tar.gz vdr-plugin-epg2vdr-6accbdd431ad2e2e4d7b1568840f7566e36e024d.tar.bz2 |
2020-08-18: version 1.1.117 (horchi)\n - addeed: compatibility to VDRs peering feature\n\n1.1.117
Diffstat (limited to 'timer.c')
-rw-r--r-- | timer.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -649,6 +649,9 @@ int cUpdate::updateTimerTable() for (const cTimer* t = timers->First(); t; t = timers->Next(t)) { + if (!t->Local()) + continue; + int timerid = getTimerIdOf(t); // compare by timerid @@ -709,6 +712,9 @@ int cUpdate::updateTimerTable() int insert = yes; int timerId = getTimerIdOf(t); + if (!t->Local()) + continue; + // no timer id or not in table -> handle as insert! timerDb->clear(); |