From: Felix Domke Date: Fri, 28 Mar 2008 13:52:19 +0000 (+0000) Subject: fix for HD channels in userbouquets X-Git-Tag: 2.6.0~1408 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/4ea6f82664bb94cead6886790afda64e40347225 fix for HD channels in userbouquets --- diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index 7bd50472..b38d3681 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -420,7 +420,7 @@ class ChannelSelectionEdit: if mutableBouquetList: if self.mode == MODE_TV: bName += " (TV)" - str = '1:7:1:0:0:0:0:0:0:0:(type == 1) FROM BOUQUET \"userbouquet.%s.tv\" ORDER BY bouquet'%(self.buildBouquetID(bName)) + str = '1:7:1:0:0:0:0:0:0:0:(type == 1) || (type == 17) || (type == 195) || (type == 25) || (type == 134) FROM BOUQUET \"userbouquet.%s.tv\" ORDER BY bouquet'%(self.buildBouquetID(bName)) else: bName += " (Radio)" str = '1:7:2:0:0:0:0:0:0:0:(type == 2) FROM BOUQUET \"userbouquet.%s.radio\" ORDER BY bouquet'%(self.buildBouquetID(bName)) @@ -1001,7 +1001,7 @@ class ChannelSelectionBase(Screen): pos = servicepath.find(" FROM BOUQUET") if pos != -1: if self.mode == MODE_TV: - servicepath = '(type == 1)' + servicepath[pos:] + servicepath = '(type == 1) || (type == 17) || (type == 195) || (type == 25) || (type == 134)' + servicepath[pos:] else: servicepath = '(type == 2)' + servicepath[pos:] service.setPath(servicepath)