From 4e52547a59c14f619b053e2731a413221d65647f Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Tue, 6 Apr 2021 14:25:05 +0200 Subject: cTimer::TriggerRespawn() now only acts on local timers --- timers.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'timers.c') diff --git a/timers.c b/timers.c index 2d66b62d..1dc3c75a 100644 --- a/timers.c +++ b/timers.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: timers.c 5.8 2021/04/06 09:50:30 kls Exp $ + * $Id: timers.c 5.9 2021/04/06 14:25:05 kls Exp $ */ #include "timers.h" @@ -795,7 +795,7 @@ bool cTimer::AdjustSpawnedTimer(void) void cTimer::TriggerRespawn(void) { - if (HasFlags(tfSpawned) || IsPatternTimer()) { + if (Local() && HasFlags(tfSpawned) || IsPatternTimer()) { if (Channel()) { LOCK_CHANNELS_READ; if (const cSchedule *Schedule = Channel()->Schedule()) { -- cgit v1.2.3