zapit/src/bouquets.cpp: fix favorites webtv channels not found in webtv xml files

This commit is contained in:
[CST] Focus
2015-02-13 16:15:04 +03:00
parent 1bfcad398f
commit 63d8c8e90b

View File

@@ -447,8 +447,14 @@ void CBouquetManager::parseBouquetsXml(const char *fname, bool bUser)
newBouquet->addService(chan);
} else if (bUser) {
if (url) {
chid = create_channel_id64(0, 0, 0, 0, 0, url);
chan = new CZapitChannel(name2.c_str(), chid, url, NULL);
}
else
chan = new CZapitChannel(name2, CREATE_CHANNEL_ID64, 1 /*service_type*/,
satellitePosition, freq);
CServiceManager::getInstance()->AddChannel(chan);
chan->flags = CZapitChannel::NOT_FOUND;
chan->bLocked = clock;