summaryrefslogtreecommitdiff
path: root/ttools.c
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2020-08-18 18:13:15 +0200
committerhorchi <vdr@jwendel.de>2020-08-18 18:13:15 +0200
commit6accbdd431ad2e2e4d7b1568840f7566e36e024d (patch)
tree1df5f717ebc32cb1d6fc075e1e23aee980003e55 /ttools.c
parentd67a088d3052497ad082174c15af311a7f182894 (diff)
downloadvdr-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 'ttools.c')
-rw-r--r--ttools.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/ttools.c b/ttools.c
index 25b2fdb..db2cf0f 100644
--- a/ttools.c
+++ b/ttools.c
@@ -253,8 +253,13 @@ int setTimerId(cTimer* timer, int tid)
cTimer* getTimerById(cTimers* timers, int timerid)
{
for (cTimer* t = timers->First(); t; t = timers->Next(t))
+ {
+ if (!t->Local())
+ continue;
+
if (timerid == getTimerIdOf(t))
return t;
+ }
return 0;
}