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

Quality Bugfixes

This commit is contained in:
deathbybandaid 2020-10-15 12:29:19 -04:00
parent 641bb2890f
commit a5b3c7080d
2 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
# uuid =
# cache_dir =
[empty]
[blocks]
# epg_update_frequency =
[nextpvr]

View File

@ -35,7 +35,7 @@ class BlocksEPG():
"name": c["name"],
"number": c["number"],
"id": c["id"],
"thumbnail": ("/images?source=empty&type=channel&id=%s" % (str(c['number']))),
"thumbnail": ("/images?source=generate&message=%s" % (str(c['number']))),
"listing": [],
}
@ -44,7 +44,7 @@ class BlocksEPG():
"time_start": timestamp['time_start'],
"time_end": timestamp['time_end'],
"duration_minutes": 60,
"thumbnail": ("/images?source=empty&type=content&id=%s" % (str(c['number']))),
"thumbnail": ("/images?source=generate&message=%s" % (str(c["id"]) + "_" + str(timestamp['time_start']))),
"title": "Unavailable",
"sub-title": "Unavailable",
"description": "Unavailable",
@ -55,7 +55,7 @@ class BlocksEPG():
"seasonnumber": None,
"episodenumber": None,
"isnew": False,
"id": timestamp['time_start'],
"id": str(c["id"]) + "_" + str(timestamp['time_start']),
}
programguide[str(c["number"])]["listing"].append(clean_prog_dict)