1
0
mirror of https://github.com/fHDHR/fHDHR_NextPVR.git synced 2025-12-06 07:46:58 -05:00

Enhance Blocks EPG Method

This commit is contained in:
deathbybandaid 2020-11-28 12:46:36 -05:00
parent 8a9f2b1361
commit b5e425e6d1

View File

@ -29,7 +29,9 @@ class blocksEPG():
} }
timestamps.append(timestampdict) timestamps.append(timestampdict)
for c in self.channels.get_channels(): for fhdhr_id in list(self.channels.list.keys()):
c = self.channels.list[fhdhr_id].dict
if str(c["number"]) not in list(programguide.keys()): if str(c["number"]) not in list(programguide.keys()):
programguide[str(c["number"])] = { programguide[str(c["number"])] = {
"callsign": c["callsign"], "callsign": c["callsign"],