summaryrefslogtreecommitdiff
path: root/webdo.c
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2018-02-14 17:21:46 +0100
committerhorchi <vdr@jwendel.de>2018-02-14 17:21:46 +0100
commit1165611e68422b1637ed84f2ca26d9566d3cc6fd (patch)
tree2025b540b482deb195241719a19a48060c6ee542 /webdo.c
parent031d850246454c1e5a3aacfedd801c1dd0a33191 (diff)
downloadvdr-epg-daemon-1165611e68422b1637ed84f2ca26d9566d3cc6fd.tar.gz
vdr-epg-daemon-1165611e68422b1637ed84f2ca26d9566d3cc6fd.tar.bz2
2018-02-14: version 1.1.133 (horchi)\n - bugfix: Fixed display of external timer in WEBIF lists\n\n1.1.133
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")))