Skip to content

Commit

Permalink
Merge pull request #3958 from Dima73/pull1
Browse files Browse the repository at this point in the history
  • Loading branch information
littlesat committed Apr 24, 2024
2 parents 0c459eb + 4115152 commit 82b7c30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/python/Navigation.py
Expand Up @@ -169,9 +169,9 @@ def playService(self, ref, checkParentalControl=True, forceRestart=False, adjust
self.currentlyPlayingServiceOrGroup = InfoBarInstance.servicelist.servicelist.getCurrent()
setPriorityFrontend = False
if BoxInfo.getItem("DVB-T_priority_tuner_available") or BoxInfo.getItem("DVB-C_priority_tuner_available") or BoxInfo.getItem("DVB-S_priority_tuner_available") or BoxInfo.getItem("ATSC_priority_tuner_available"):
str_service = playref.toString()
str_service = self.currentlyPlayingServiceReference.toString()
if '%3a//' not in str_service and not str_service.rsplit(":", 1)[1].startswith("/"):
type_service = playref.getUnsignedData(4) >> 16
type_service = self.currentlyPlayingServiceReference.getUnsignedData(4) >> 16
if type_service == 0xEEEE:
if BoxInfo.getItem("DVB-T_priority_tuner_available") and config.usage.frontend_priority_dvbt.value != "-2":
if config.usage.frontend_priority_dvbt.value != config.usage.frontend_priority.value:
Expand Down

0 comments on commit 82b7c30

Please sign in to comment.