zapit/src/bouquets.cpp: ignore freq part of channel id for user bouquets only

Origin commit data
------------------
Branch: ni/coolstream
Commit: 0fe0923457
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-05-29 (Tue, 29 May 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2012-05-29 11:04:13 +04:00
parent 0e38ce825d
commit 8d4a6b7063

View File

@@ -361,7 +361,11 @@ void CBouquetManager::parseBouquetsXml(const char *fname, bool bUser)
if(freq > 20000)
freq = freq/1000;
CZapitChannel* chan = CServiceManager::getInstance()->FindChannel48(CREATE_CHANNEL_ID64);
CZapitChannel* chan;
if(bUser)
chan = CServiceManager::getInstance()->FindChannel48(CREATE_CHANNEL_ID64);
else
chan = CServiceManager::getInstance()->FindChannel(CREATE_CHANNEL_ID64);
if (chan != NULL) {
DBG("%04x %04x %04x %s\n", transport_stream_id, original_network_id, service_id, xmlGetAttribute(channel_node, "n"));
#if 0