diff options
author | Christian Wieninger <cwieninger@gmx.de> | 2011-03-27 14:56:46 +0200 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2011-03-27 14:56:46 +0200 |
commit | 78e46078a57cc11924b9354ca45045c12cd6714f (patch) | |
tree | 13ef412df512f3e54a5098063de37db2655c7623 /epgsearchext.c | |
parent | f5cb8d753eeaceaa0fa27544b349584d3b56e119 (diff) | |
download | vdr-plugin-epgsearch-78e46078a57cc11924b9354ca45045c12cd6714f.tar.gz vdr-plugin-epgsearch-78e46078a57cc11924b9354ca45045c12cd6714f.tar.bz2 |
dropped option 'yes' in 'compare subtitle' when checking for a repeat and replaced it with 'if present'
Diffstat (limited to 'epgsearchext.c')
-rw-r--r-- | epgsearchext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epgsearchext.c b/epgsearchext.c index fd269e8..3f160a7 100644 --- a/epgsearchext.c +++ b/epgsearchext.c @@ -558,7 +558,7 @@ bool cSearchExt::Parse(const char *s) break; case 31: compareTitle = atoi(value); break; - case 32: compareSubtitle = atoi(value); + case 32: compareSubtitle = atoi(value)>0?1:0; break; case 33: compareSummary = atoi(value); break; |