From 5bc21a6edd67843803b75ad59c0987ea98ff88dc Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Tue, 7 Nov 2017 07:51:08 +0100 Subject: [PATCH] - neutrino: don't add web-channels to sat-bouquet Signed-off-by: Thilo Graf --- src/neutrino.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/neutrino.cpp b/src/neutrino.cpp index 7b60b1338..d2232a5e3 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -1671,10 +1671,12 @@ void CNeutrinoApp::channelsInit(bool bOnly) CBouquet* webtvBouquet = new CBouquet(0, g_Locale->getText(LOCALE_BOUQUETNAME_WEBTV), false, true); webtvBouquet->channelList->SetChannelList(&webtvList); TVallList->Bouquets.push_back(webtvBouquet); +#if 0 /* "satellite" */ webtvBouquet = new CBouquet(0, g_Locale->getText(LOCALE_BOUQUETNAME_WEBTV), false, true); webtvBouquet->channelList->SetChannelList(&webtvList); TVsatList->Bouquets.push_back(webtvBouquet); +#endif printf("[neutrino] got %d WebTV channels\n", (int)webtvList.size()); fflush(stdout); } } @@ -1685,10 +1687,12 @@ void CNeutrinoApp::channelsInit(bool bOnly) CBouquet* webradioBouquet = new CBouquet(0, g_Locale->getText(LOCALE_BOUQUETNAME_WEBRADIO), false, true); webradioBouquet->channelList->SetChannelList(&webradioList); RADIOallList->Bouquets.push_back(webradioBouquet); +#if 0 /* "satellite" */ webradioBouquet = new CBouquet(0, g_Locale->getText(LOCALE_BOUQUETNAME_WEBRADIO), false, true); webradioBouquet->channelList->SetChannelList(&webradioList); RADIOsatList->Bouquets.push_back(webradioBouquet); +#endif printf("[neutrino] got %d WebRadio channels\n", (int)webradioList.size()); fflush(stdout); } }