ignore show requests when no instance available yet
[enigma2.git] / lib / python / Screens / ChannelSelection.py
index 26ca436102c542b754f4338393051ed5ad85f594..c9a0eeede4eee70f0a6551b53a2a2dd4188fe86b 100644 (file)
@@ -910,7 +910,9 @@ class ChannelSelectionBase(Screen):
                                self.enterPath(ref)
 
        def inBouquet(self):
-               return self.isBasePathEqual(self.bouquet_root)
+               if len(self.servicePath) > 0 and self.servicePath[0] == self.bouquet_root:
+                       return True
+               return False
 
        def atBegin(self):
                return self.servicelist.atBegin()