zapit/src/bouquets.cpp: do not add webtv channels to 'Other' bouquet

This commit is contained in:
[CST] Focus
2014-10-13 18:00:56 +04:00
parent ab2be9aeb0
commit 2de388cd80

View File

@@ -521,7 +521,8 @@ void CBouquetManager::makeRemainingChannelsBouquet(void)
remainChannels->bOther = true; remainChannels->bOther = true;
for (ZapitChannelList::const_iterator it = unusedChannels.begin(); it != unusedChannels.end(); ++it) { for (ZapitChannelList::const_iterator it = unusedChannels.begin(); it != unusedChannels.end(); ++it) {
remainChannels->addService(*it); if (!IS_WEBTV((*it)->getChannelID()))
remainChannels->addService(*it);
} }
renumChannels(remainChannels->tvChannels, i); renumChannels(remainChannels->tvChannels, i);