summaryrefslogtreecommitdiff
path: root/epg.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2019-05-20 09:55:22 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2019-05-20 09:55:22 +0200
commitabdab188079e7db7ec22f18171ac300b16e8e8a9 (patch)
treeff2ad5613e63c60e322307b9a803c3578877d673 /epg.c
parent12d8ef5a21d73ae0b7e656d2dd8f9ead5177bf56 (diff)
downloadvdr-abdab188079e7db7ec22f18171ac300b16e8e8a9.tar.gz
vdr-abdab188079e7db7ec22f18171ac300b16e8e8a9.tar.bz2
Added a workaround for broadcasters who set an event to status "not running" where this is inappropriate; implicitly setting events to "not running" is now also logged
Diffstat (limited to 'epg.c')
-rw-r--r--epg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epg.c b/epg.c
index 486844e5..5d2980c9 100644
--- a/epg.c
+++ b/epg.c
@@ -7,7 +7,7 @@
* Original version (as used in VDR before 1.3.0) written by
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
*
- * $Id: epg.c 4.8 2017/05/28 13:08:09 kls Exp $
+ * $Id: epg.c 4.9 2019/05/20 09:55:22 kls Exp $
*/
#include "epg.h"
@@ -1025,7 +1025,7 @@ void cSchedule::SetRunningStatus(cEvent *Event, int RunningStatus, const cChanne
}
}
else if (RunningStatus >= SI::RunningStatusPausing && p->StartTime() < Event->StartTime())
- p->SetRunningStatus(SI::RunningStatusNotRunning);
+ p->SetRunningStatus(SI::RunningStatusNotRunning, Channel);
if (p->RunningStatus() >= SI::RunningStatusPausing)
hasRunning = true;
}