1
0
mirror of https://github.com/fHDHR/fHDHR_NextPVR.git synced 2025-12-06 13:36:59 -05:00

Merge pull request #98 from deathbybandaid/dev

Dev
This commit is contained in:
Deathbybandaid 2021-01-01 18:25:55 -05:00 committed by GitHub
commit cebce2f1ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -271,7 +271,7 @@ class EPG():
# if a stock method, generate Blocks EPG for missing channels # if a stock method, generate Blocks EPG for missing channels
if method in ["blocks", "origin", self.fhdhr.config.dict["main"]["dictpopname"]]: if method in ["blocks", "origin", self.fhdhr.config.dict["main"]["dictpopname"]]:
timestamps = self.blocks.timestamps timestamps = self.blocks.timestamps
for fhdhr_id in [x["id"] for x in self.fhdhr.device.channels.get_channels()]: for fhdhr_id in [x["id"] for x in self.channels.get_channels()]:
chan_obj = self.channels.list[fhdhr_id] chan_obj = self.channels.list[fhdhr_id]
if str(chan_obj.number) not in list(programguide.keys()): if str(chan_obj.number) not in list(programguide.keys()):
programguide[str(chan_obj.number)] = chan_obj.epgdict programguide[str(chan_obj.number)] = chan_obj.epgdict

View File

@ -13,7 +13,7 @@ class blocksEPG():
timestamps = self.timestamps timestamps = self.timestamps
for fhdhr_id in [x["id"] for x in self.fhdhr.device.channels.get_channels()]: for fhdhr_id in [x["id"] for x in self.channels.get_channels()]:
chan_obj = self.channels.list[fhdhr_id] chan_obj = self.channels.list[fhdhr_id]
if str(chan_obj.number) not in list(programguide.keys()): if str(chan_obj.number) not in list(programguide.keys()):