summaryrefslogtreecommitdiff
path: root/webdo.c
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2018-02-16 18:59:40 +0100
committerhorchi <vdr@jwendel.de>2018-02-16 18:59:40 +0100
commitb2fb1c3c3b33ce7d7e4e88e02f29bb6aabad5d00 (patch)
treea5f36fe231022a7954f2edbd7cf0eec37ddac19b /webdo.c
parentf91afbf2343fb96ce30628243e97c4a99bfee6da (diff)
parent53d4aa03a6190d5fd9e055c9814374edae0fafe7 (diff)
downloadvdr-epg-daemon-b2fb1c3c3b33ce7d7e4e88e02f29bb6aabad5d00.tar.gz
vdr-epg-daemon-b2fb1c3c3b33ce7d7e4e88e02f29bb6aabad5d00.tar.bz2
Merge branch 'master' of projects.vdr-developer.org:vdr-epg-daemon
* 'master' of projects.vdr-developer.org:vdr-epg-daemon: updated configs/eventsview-ck.sql 2018-02-14: version 1.1.134 (horchi)\n - bugfix: Fixed handling of timer type change by WEBIF\n\n 2018-02-14: version 1.1.133 (horchi)\n - bugfix: Fixed display of external timer in WEBIF lists\n\n 2018-02-10: version 1.1.132 (rechner)\n - chanhed: text for swichtimer and highlight recIcon on success\n\n
Diffstat (limited to 'webdo.c')
-rw-r--r--webdo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/webdo.c b/webdo.c
index 679501e..8374f34 100644
--- a/webdo.c
+++ b/webdo.c
@@ -1547,13 +1547,13 @@ int cEpgHttpd::doTimers(MHD_Connection* tcp, json_t* obj)
// state / action
- if (!isEmpty(action) && !strchr(action, *timerDb->getStrValue("ACTION")))
+ if (!isEmpty(action) && !strchr(action, toupper(*timerDb->getStrValue("ACTION"))))
continue;
if (!isEmpty(state)&& !strchr(state, *timerDb->getStrValue("STATE")))
continue;
- if (!isEmpty(naction) && strchr(naction, *timerDb->getStrValue("ACTION")))
+ if (!isEmpty(naction) && strchr(naction, toupper(*timerDb->getStrValue("ACTION"))))
continue;
if (!isEmpty(nstate) && strchr(nstate, *timerDb->getStrValue("STATE")))