From: Stefan Pluecken Date: Tue, 6 Dec 2005 23:52:30 +0000 (+0000) Subject: this fix has side-effects... so we reverse it which breaks initial status again X-Git-Tag: 2.6.0~4807 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/00e833f8ab8c769cc802a050810f4976c99f9a5f?ds=sidebyside this fix has side-effects... so we reverse it which breaks initial status again --- 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())