X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FInfoBarGenerics.py;h=6e28f84a5a9b0af4254df6170dc4f0014c179dc0;hp=e64081e6924db11166e8a997f98af79ae17ff91c;hb=544e1af49c6c1c25a3ef97b27ac3e6764a008824;hpb=d839a9dc005a469e4509d07305cdf3b4913d3ec1 diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index e64081e..6e28f84 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -1305,7 +1305,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: