summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann Friedrichs <johann.friedrichs@web.de>2021-12-10 21:02:02 +0100
committerJohann Friedrichs <johann.friedrichs@web.de>2021-12-10 21:02:02 +0100
commit4edcf040893f9057e89e798f18a4e63a5c8fbb50 (patch)
tree3fe4001dc4308cfdfb4e33a18b02f3c7480527a4
parentcff8dfe58853aa0cc4f6e9a8896104a920b98730 (diff)
downloadvdr-plugin-epgsearch-4edcf040893f9057e89e798f18a4e63a5c8fbb50.tar.gz
vdr-plugin-epgsearch-4edcf040893f9057e89e798f18a4e63a5c8fbb50.tar.bz2
compareSubtitle supports more than 2 values
-rw-r--r--epgsearchext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epgsearchext.c b/epgsearchext.c
index 04c3623..03e9574 100644
--- a/epgsearchext.c
+++ b/epgsearchext.c
@@ -566,7 +566,7 @@ bool cSearchExt::Parse(const char *s)
compareTitle = atoi(value);
break;
case 32:
- compareSubtitle = atoi(value) > 0 ? 1 : 0;
+ compareSubtitle = atoi(value);
break;
case 33:
compareSummary = atoi(value);