diff options
author | Christian Wieninger <cwieninger@gmx.de> | 2013-04-14 19:34:58 +0200 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2013-04-14 19:34:58 +0200 |
commit | e5b50757feff685cc7e2fe280ee940c1160b3aad (patch) | |
tree | 3d56660f20a540587f6728ad6e7a2ec21394f7e9 /epgsearchext.c | |
parent | e2de927a5f1ff844b34eacbbe8575ed053a167e7 (diff) | |
download | vdr-plugin-epgsearch-e5b50757feff685cc7e2fe280ee940c1160b3aad.tar.gz vdr-plugin-epgsearch-e5b50757feff685cc7e2fe280ee940c1160b3aad.tar.bz2 |
fix summary comparison when checking for repeats (was ML 'Epgsearch mysteries')
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 9db9158..db0a9a7 100644 --- a/epgsearchext.c +++ b/epgsearchext.c @@ -1201,7 +1201,7 @@ void cSearchExt::CheckRepeatTimers(cSearchResults* pResults) if (!pResultObjP->needsTimer) continue; - if (EventsMatch(pEvent, pEventP, compareTitle, compareSubtitle, compareSummary, compareDate, catvaluesAvoidRepeat)) + if (EventsMatch(pEvent, pEventP, compareTitle, compareSubtitle, compareSummary, compareDate, catvaluesAvoidRepeat, compareSummaryMatchInPercent)) { if (!pFirstResultMatching) pFirstResultMatching = pResultObjP; plannedTimers++; |