From: Felix Domke Date: Thu, 12 Feb 2009 16:10:11 +0000 (+0100) Subject: no servicelist unless we have InfoBarChannelSelection X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=00248c1a8794e64b8ce82d9cdefdd3ddae98dffd;ds=sidebyside no servicelist unless we have InfoBarChannelSelection --- diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 3404e3f..627a53d 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: