diff options
author | Jochen Dolze <vdr@dolze.de> | 2011-01-10 20:09:10 +0100 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2011-01-10 20:09:10 +0100 |
commit | 0afda6d34adb77ffbce433b3b9a4c6e8a3e1f3b7 (patch) | |
tree | bf1c64c3521f4e730120998f7fddcef7fe615d83 /plugin/status.cpp | |
parent | 266060cb5e75340c713e070315378f44aa366b4e (diff) | |
download | vdr-plugin-markad-0afda6d34adb77ffbce433b3b9a4c6e8a3e1f3b7.tar.gz vdr-plugin-markad-0afda6d34adb77ffbce433b3b9a4c6e8a3e1f3b7.tar.bz2 |
Fixed bug reported by ALT255 (markad stops when VDR deletes the timer after a recording)
Fixed bug reported by Copperhead (saving setup values was broken)
Added logos for SIXX and NICK_COMEDY
Diffstat (limited to 'plugin/status.cpp')
-rw-r--r-- | plugin/status.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugin/status.cpp b/plugin/status.cpp index ad088c1..21be601 100644 --- a/plugin/status.cpp +++ b/plugin/status.cpp @@ -126,6 +126,7 @@ void cStatusMarkAd::TimerChange(const cTimer *Timer, eTimerChange Change) { if (!Timer) return; if (Change!=tcDel) return; + if (time(NULL)>=Timer->Stop()) return; // don't react on normal VDR timer deletion after recording Remove(Timer->File(),true); } |