From: Felix Domke Date: Thu, 12 Feb 2009 16:10:11 +0000 (+0100) Subject: no servicelist unless we have InfoBarChannelSelection X-Git-Tag: 2.6.0~441 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/00248c1a8794e64b8ce82d9cdefdd3ddae98dffd no servicelist unless we have InfoBarChannelSelection --- diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 3404e3f9..627a53d2 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -1296,7 +1296,10 @@ class InfoBarPlugins: return list def runPlugin(self, plugin): - plugin(session = self.session, servicelist = self.servicelist) + if isinstance(self, InfoBarChannelSelection): + plugin(session = self.session, servicelist = self.servicelist) + else: + plugin(session = self.session) from Components.Task import job_manager class InfoBarJobman: