diff options
author | Christian Wieninger <cwieninger@gmx.de> | 2012-05-07 19:14:03 +0200 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2012-05-07 19:14:03 +0200 |
commit | 5c5359cf94bf9de90d6eb10daa2c83db30cfb06e (patch) | |
tree | fcb1143bb4f3e0c009b9645b1c7ff26bdb490517 /recdone.c | |
parent | a729c6bceebf99446cb6b5b0c63c21b4eec97033 (diff) | |
download | vdr-plugin-epgsearch-5c5359cf94bf9de90d6eb10daa2c83db30cfb06e.tar.gz vdr-plugin-epgsearch-5c5359cf94bf9de90d6eb10daa2c83db30cfb06e.tar.bz2 |
format specifier in epgsearchcats.conf, thanks to Joe_D for a patch
Diffstat (limited to 'recdone.c')
-rw-r--r-- | recdone.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -248,8 +248,8 @@ bool CatValuesMatch(unsigned long catvaluesAvoidRepeat, const string& rDescr, co { if (catvaluesAvoidRepeat & (1<<index)) { - char* eCatValue = GetExtEPGValue(eDescr.c_str(), SearchExtCat->name); - char* rCatValue = GetExtEPGValue(rDescr.c_str(), SearchExtCat->name); + char* eCatValue = GetExtEPGValue(eDescr.c_str(), SearchExtCat->name, SearchExtCat->format); + char* rCatValue = GetExtEPGValue(rDescr.c_str(), SearchExtCat->name, SearchExtCat->format); if ((!eCatValue && rCatValue) || (!rCatValue && eCatValue) || (eCatValue && rCatValue && strcmp(eCatValue, rCatValue) != 0)) |