1
0
mirror of https://github.com/fHDHR/fHDHR_NextPVR.git synced 2025-12-06 04:26:57 -05:00

Fix Lineup Tab issue

This commit is contained in:
deathbybandaid 2021-01-02 15:00:12 -05:00
parent adae4d77c7
commit aec09eade1
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ class Lineup_JSON():
elif show == "found" and not channel_obj.enabled:
lineup_dict["Enabled"] = 0
channelslist[channel_obj.number] = lineup_dict
channelslist[channel_obj.number] = lineup_dict
# Sort the channels
sorted_channel_list = channel_sort(list(channelslist.keys()))

View File

@ -32,7 +32,7 @@ class Lineup_XML():
elif show == "found" and not channel_obj.enabled:
lineup_dict["Enabled"] = 0
channelslist[channel_obj.number] = lineup_dict
channelslist[channel_obj.number] = lineup_dict
# Sort the channels
sorted_channel_list = channel_sort(list(channelslist.keys()))