summaryrefslogtreecommitdiff
path: root/src/vdr-plugin/timer.c
diff options
context:
space:
mode:
authorAntti Ajanki <antti.ajanki@iki.fi>2010-07-24 19:19:19 +0300
committerAntti Ajanki <antti.ajanki@iki.fi>2010-07-24 19:19:19 +0300
commit538ad1c5720c72619a62a9c029b73ad5cde1499e (patch)
tree9b0636de51455ad463338e569c5ad55360c3f8fb /src/vdr-plugin/timer.c
parentfffeaa5d5f5b421e5b6eddd6d42b141ace04641e (diff)
downloadvdr-plugin-webvideo-538ad1c5720c72619a62a9c029b73ad5cde1499e.tar.gz
vdr-plugin-webvideo-538ad1c5720c72619a62a9c029b73ad5cde1499e.tar.bz2
Fix timer reporting "unfinished" error after being completed
Diffstat (limited to 'src/vdr-plugin/timer.c')
-rw-r--r--src/vdr-plugin/timer.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vdr-plugin/timer.c b/src/vdr-plugin/timer.c
index f9fef59..2ef519f 100644
--- a/src/vdr-plugin/timer.c
+++ b/src/vdr-plugin/timer.c
@@ -83,7 +83,7 @@ void cWebviTimer::Execute() {
cWebviThread::Instance().AddRequest(req);
lastUpdate = time(NULL);
- SetError("Unfinished");
+ SetError(NULL);
parent->SetModified();
activeStreams.Clear();
@@ -166,7 +166,6 @@ void cWebviTimer::DownloadStreams(const char *menuxml, cProgressVector& summarie
xmlFreeDoc(doc);
if (activeStreams.Size() == 0) {
- SetError(NULL);
running = false;
}
}