From 4e2a08dba46fce9e8b9ab56dbf224b351f874b92 Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Tue, 2 Apr 2013 14:30:28 +0400 Subject: [PATCH] zapit/src/getservices.cpp: fix FindChannelFuzzy for mixed frontends --- src/zapit/src/getservices.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zapit/src/getservices.cpp b/src/zapit/src/getservices.cpp index b76f12b83..72fdd2947 100644 --- a/src/zapit/src/getservices.cpp +++ b/src/zapit/src/getservices.cpp @@ -237,7 +237,7 @@ CZapitChannel* CServiceManager::FindChannelFuzzy(const t_channel_id channel_id, * to choose from and people are wondering why their ubouquets are no longer * working => because they had the wrong 's="x"' attribute. * TODO: think about mixed-mode (sat/cable/terrestrial) operation */ - if (frontendType == FE_QPSK && pos != ret->getSatellitePosition()) + if (ret->deltype == FE_QPSK && pos != ret->getSatellitePosition()) continue; /* match +-2MHz to make old ubouquets work with updated satellites.xml */ if (abs((int)ret->getFreqId() - (int)freq) < 3)