From 00e833f8ab8c769cc802a050810f4976c99f9a5f Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Tue, 6 Dec 2005 23:52:30 +0000 Subject: [PATCH] this fix has side-effects... so we reverse it which breaks initial status again --- lib/python/Screens/ChannelSelection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index 9b41b2b2..03182ab8 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -368,7 +368,7 @@ class ChannelSelection(ChannelSelectionBase, ChannelSelectionEdit): def onShow(self): ref = self.session.nav.getCurrentlyPlayingServiceReference() - if ref != None and ref.valid() and ref.getPath() == "": + if ref.valid() and ref.getPath() == "": self.servicelist.setPlayableIgnoreService(ref) else: self.servicelist.setPlayableIgnoreService(eServiceReference()) -- 2.30.2