diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-10-01 20:34:13 +0200 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-10-01 20:34:13 +0200 |
commit | 5f6c56f9b630ef18d5c8808569fc11ca82313e88 (patch) | |
tree | 16b4e6f5a3ca97cd05b154bfd6a14e0820ca54f4 /epgsearchtools.c | |
parent | 4af3d44e6f60d3b8e3b4fe3adab0b33239fbd06a (diff) | |
download | vdr-plugin-epgsearch-5f6c56f9b630ef18d5c8808569fc11ca82313e88.tar.gz vdr-plugin-epgsearch-5f6c56f9b630ef18d5c8808569fc11ca82313e88.tar.bz2 |
Two events with both empty episode names are now handled different within the feature 'Avoid repeats'.
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 a4f4614..8ae1493 100644 --- a/epgsearchtools.c +++ b/epgsearchtools.c @@ -831,7 +831,7 @@ bool EventsMatch(const cEvent* event1, const cEvent* event2, bool compareTitle, bool match = false; if ((!compareTitle || Title1 == Title2) && - (!compareSubtitle || Subtitle1 == Subtitle2)) + (!compareSubtitle || (Subtitle1 == Subtitle2 && Subtitle1!=""))) { const char* Descr1 = event1->Description(); const char* Descr2 = event2->Description(); |