From 4ea6f82664bb94cead6886790afda64e40347225 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Fri, 28 Mar 2008 13:52:19 +0000 Subject: [PATCH] fix for HD channels in userbouquets --- lib/python/Screens/ChannelSelection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.30.2