Skip to content

Commit

Permalink
[InfoBarGenerics] avoid possible BSoD if self.servicelist is None
Browse files Browse the repository at this point in the history
  • Loading branch information
Huevos committed Nov 29, 2024
1 parent aeed704 commit 62b7735
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/python/Screens/InfoBarGenerics.py
Original file line number Diff line number Diff line change
Expand Up @@ -1784,6 +1784,8 @@ def getBouquetServices(self, bouquet):
return services

def multiServiceEPG(self, type, showBouquet):
if not self.servicelist:
return
def openEPG(open, bouquet, bouquets):
if open:
bouquet = bouquet or self.servicelist.getRoot()
Expand Down

0 comments on commit 62b7735

Please sign in to comment.