From cf6d38d19020402e39a8b6224c2159c3f3b61203 Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Sat, 11 Oct 2014 13:20:56 +0400 Subject: [PATCH] neutrino.cpp: hide empty favorites, again --- src/neutrino.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/neutrino.cpp b/src/neutrino.cpp index c328a3326..a1317b0f3 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -1460,7 +1460,7 @@ void CNeutrinoApp::channelsInit(bool bOnly) for (i = 0; i < g_bouquetManager->Bouquets.size(); i++) { CZapitBouquet *b = g_bouquetManager->Bouquets[i]; if (!b->bHidden) { - if (b->getTvChannels(zapitList)|| b->bFav) { + if (b->getTvChannels(zapitList) /*|| b->bFav */) { if(b->bUser) tmp = TVfavList->addBouquet(b); else @@ -1469,7 +1469,7 @@ void CNeutrinoApp::channelsInit(bool bOnly) tmp->channelList->SetChannelList(&zapitList); tvi++; } - if (b->getRadioChannels(zapitList)|| b->bFav) { + if (b->getRadioChannels(zapitList) /* || b->bFav */) { if(b->bUser) tmp = RADIOfavList->addBouquet(b); else