X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/5c27251fa08566a00d124aaf2c02249995dac9cf..3d5ee66a7e80c61e431e74e821242e144e88f008:/lib/python/Screens/InfoBar.py diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py index 62639c04..78a47ddd 100644 --- a/lib/python/Screens/InfoBar.py +++ b/lib/python/Screens/InfoBar.py @@ -224,7 +224,12 @@ class InfoBar(Screen): self.muteDialog.instance.hide() def showEPGList(self): - self.session.open(EPGSelection, self.session.nav.getCurrentlyPlayingServiceReference()) + ref=self.session.nav.getCurrentlyPlayingServiceReference() + ptr=eEPGCache.getInstance() + if ptr.startTimeQuery(ref) != -1: + self.session.open(EPGSelection, ref) + else: + print 'no epg for service', ref.toString() def quit(self): self.session.open(Standby)