mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 17:31:11 +02:00
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:
@@ -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
|
||||
|
Reference in New Issue
Block a user