From dc06004a0561a0f81d14f175118268728e951e4e Mon Sep 17 00:00:00 2001 From: Jochen Dolze Date: Mon, 21 Feb 2011 22:25:04 +0100 Subject: Fixed markad running when timer is deleted bug --- plugin/status.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugin') 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); } -- cgit v1.2.3