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 /epgsearchtools.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 'epgsearchtools.c')
-rw-r--r-- | epgsearchtools.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epgsearchtools.c b/epgsearchtools.c index a5ac3b2..d36cd15 100644 --- a/epgsearchtools.c +++ b/epgsearchtools.c @@ -822,7 +822,7 @@ bool EventsMatch(const cEvent* event1, const cEvent* event2, bool compareTitle, bool match = false; if ((!compareTitle || Title1 == Title2) && - (!compareSubtitle || (Subtitle1 == Subtitle2 && (compareSubtitle==2 || Subtitle1!="")))) + (!compareSubtitle || (Subtitle1 == Subtitle2 && Subtitle1!=""))) { const char* Descr1 = event1->Description(); const char* Descr2 = event2->Description(); |