this fix has side-effects... so we reverse it which breaks initial status again
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Tue, 6 Dec 2005 23:52:30 +0000 (23:52 +0000)
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Tue, 6 Dec 2005 23:52:30 +0000 (23:52 +0000)
lib/python/Screens/ChannelSelection.py

index 9b41b2b..03182ab 100644 (file)
@@ -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())