diff options
author | louis <louis.braun@gmx.de> | 2013-12-22 00:48:21 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-12-22 00:48:21 +0100 |
commit | 0da7aeb18e0368d7c38da221573c21b35fb60169 (patch) | |
tree | cf26e477361df9bee94c69ef014a1f462ff609a2 | |
parent | 4c61104675de5f1fac7e7fa95fb5743e18defc02 (diff) | |
download | vdr-plugin-tvguide-0da7aeb18e0368d7c38da221573c21b35fb60169.tar.gz vdr-plugin-tvguide-0da7aeb18e0368d7c38da221573c21b35fb60169.tar.bz2 |
Fixed a bug during channel logo loading
-rw-r--r-- | imagecache.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/imagecache.c b/imagecache.c index 6432627..9196955 100644 --- a/imagecache.c +++ b/imagecache.c @@ -542,6 +542,7 @@ bool cImageCache::LoadLogo(const cChannel *channel) { if (success)
return true;
success = LoadImage(logoLower.c_str(), *tvguideConfig.logoPath, *extension);
+ return success;
}
void cImageCache::InsertIntoLogoCache(std::string channelID) {
|