summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2018-02-24 18:40:05 +0100
committerhorchi <vdr@jwendel.de>2018-02-24 18:40:05 +0100
commit5a7781abf60c473e975674c9479006005c77d7d3 (patch)
tree595ca46f183b31590392731f2a4d30542d95065b
parentfb6de12636c538ab4ddaae0cc32089eac9584ed9 (diff)
downloadvdr-plugin-epg2vdr-5a7781abf60c473e975674c9479006005c77d7d3.tar.gz
vdr-plugin-epg2vdr-5a7781abf60c473e975674c9479006005c77d7d3.tar.bz2
2018-02-23 version 1.1.90 (horchi)\n - change: improved timer cleanup\n\n1.1.90
-rw-r--r--HISTORY.h7
-rw-r--r--timer.c2
2 files changed, 6 insertions, 3 deletions
diff --git a/HISTORY.h b/HISTORY.h
index 1b3f6e8..160c0b7 100644
--- a/HISTORY.h
+++ b/HISTORY.h
@@ -5,7 +5,7 @@
*
*/
-#define _VERSION "1.1.89"
+#define _VERSION "1.1.90"
#define VERSION_DATE "24.02.2018"
#define DB_API 6
@@ -19,10 +19,13 @@
/*
* ------------------------------------
+2018-02-23 version 1.1.90 (horchi)
+ - change: improved timer cleanup
+
2018-02-23 version 1.1.89 (horchi)
- change: Improved switch timer 'timing'
-2018-02-22 version 1.1.88 (horchi)
+018-02-22 version 1.1.88 (horchi)
- added: Optional switch timer notification message
2018-02-20 version 1.1.87 (horchi)
diff --git a/timer.c b/timer.c
index a0d6aab..d73f60a 100644
--- a/timer.c
+++ b/timer.c
@@ -584,7 +584,7 @@ int cUpdate::updateTimerTable()
tell(1, "Updating table timers (and remove deleted and finished timers older than 2 days)");
- timerDb->deleteWhere("%s < unix_timestamp() - %d and %s in ('D','F')",
+ timerDb->deleteWhere("%s < unix_timestamp() - %d and %s in ('D','F','-')",
timerDb->getField("UPDSP")->getDbName(),
2 * tmeSecondsPerDay,
timerDb->getField("STATE")->getDbName());