This commit is contained in:
deathbybandaid 2020-12-05 14:35:16 -05:00
parent 36daac88ff
commit 359b495910

View File

@ -81,7 +81,10 @@ class OriginEPG():
try: try:
title = program_dict["info"]["fullname"] title = program_dict["info"]["fullname"]
except KeyError: except KeyError:
try:
title = program_dict["name"] title = program_dict["name"]
except KeyError:
title = "Unavailable"
clean_prog_dict = { clean_prog_dict = {
"time_start": timedict['time_start'], "time_start": timedict['time_start'],