Skip to content

Commit

Permalink
[InfoBarGenerics] if servicelist is None while using MoviePlayer impo…
Browse files Browse the repository at this point in the history
  • Loading branch information
Huevos committed Nov 30, 2024
1 parent 62b7735 commit 2557a08
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/python/Screens/InfoBarGenerics.py
Original file line number Diff line number Diff line change
Expand Up @@ -1784,8 +1784,9 @@ def getBouquetServices(self, bouquet):
return services

def multiServiceEPG(self, type, showBouquet):
if not self.servicelist:
return
if self.servicelist is None:
from Screens.InfoBar import InfoBar
self.servicelist = InfoBar.instance.servicelist
def openEPG(open, bouquet, bouquets):
if open:
bouquet = bouquet or self.servicelist.getRoot()
Expand Down

0 comments on commit 2557a08

Please sign in to comment.