diff options
author | Jochen Dolze <vdr@dolze.de> | 2011-02-21 22:25:04 +0100 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2011-02-21 22:25:04 +0100 |
commit | dc06004a0561a0f81d14f175118268728e951e4e (patch) | |
tree | a1bb16e7b767e228b7745a1e34561f9d02d6c22c /plugin/status.cpp | |
parent | be6394b8c94aae459e71f2e67d0aa3e5ee181336 (diff) | |
download | vdr-plugin-markad-dc06004a0561a0f81d14f175118268728e951e4e.tar.gz vdr-plugin-markad-dc06004a0561a0f81d14f175118268728e951e4e.tar.bz2 |
Fixed markad running when timer is deleted bug
Diffstat (limited to 'plugin/status.cpp')
-rw-r--r-- | plugin/status.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/status.cpp b/plugin/status.cpp index a8461fd..812be8b 100644 --- a/plugin/status.cpp +++ b/plugin/status.cpp @@ -126,7 +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 + if (time(NULL)>=Timer->StopTime()) return; // don't react on normal VDR timer deletion after recording Remove(Timer->File(),true); } |