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-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=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 9b41b2b..03182ab 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())