diff options
author | horchi <vdr@jwendel.de> | 2018-03-07 17:43:01 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2018-03-07 17:43:01 +0100 |
commit | 595d7b091bc5ef08a1ddb49c71fca81f3df4f217 (patch) | |
tree | 10d012a22f356e870cf84920f8205db16c26e35c /lib/searchtimer.c | |
parent | b2fb1c3c3b33ce7d7e4e88e02f29bb6aabad5d00 (diff) | |
download | vdr-epg-daemon-595d7b091bc5ef08a1ddb49c71fca81f3df4f217.tar.gz vdr-epg-daemon-595d7b091bc5ef08a1ddb49c71fca81f3df4f217.tar.bz2 |
2018-03-07: version 1.1.135 (horchi)\n - bugfix: Fixed minor problem with auto timer and empty episode/shorttext\n\n
Diffstat (limited to 'lib/searchtimer.c')
-rw-r--r-- | lib/searchtimer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/searchtimer.c b/lib/searchtimer.c index 2982996..702b7bd 100644 --- a/lib/searchtimer.c +++ b/lib/searchtimer.c @@ -1225,7 +1225,7 @@ int cSearchTimer::isAlreadyDone(int repeatfields, json_t* obj, int silent) if (repeatfields & sfFolge) { selectDoneTimer->build(" and (field('%s',ifnull(compshorttext,'NoShortnameAvailable'),ifnull(episodecomppartname,'NoShortnameAvailable')) > 0" - " or field('%s',ifnull(compshorttext,''),ifnull(episodecomppartname,'NoShortnameAvailable')) > 0)", + " or field('%s',ifnull(compshorttext,'NoShortnameAvailable'),ifnull(episodecomppartname,'NoShortnameAvailable')) > 0)", useeventsDb->getStrValue("COMPSHORTTEXT"), useeventsDb->getStrValue("EPISODECOMPPARTNAME")); } |