Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions default.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def show_ondemand_root():
raiplay = RaiPlay()
items = raiplay.getMainMenu()
for item in items:
if item["sub-type"] in ("RaiPlay Tipologia Page", "RaiPlay Genere Page"):
if item["sub-type"] in ("RaiPlay Tipologia Page", "RaiPlay Genere Page", "RaiPlay Tipologia Editoriale Page" ):
liStyle = xbmcgui.ListItem(item["name"])
addDirectoryItem({"mode": "ondemand", "path_id": item["PathID"], "sub_type": item["sub-type"]}, liStyle)
liStyle = xbmcgui.ListItem("Cerca")
Expand Down Expand Up @@ -469,7 +469,7 @@ def log_country():
elif mode == "ondemand":
if subType == "":
show_ondemand_root()
elif subType in ("RaiPlay Tipologia Page", "RaiPlay Genere Page"):
elif subType in ("RaiPlay Tipologia Page", "RaiPlay Genere Page", "RaiPlay Tipologia Editoriale Page"):
show_ondemand_programmes(pathId)
elif subType == "Raiplay Tipologia Item":
show_ondemand_list(pathId)
Expand Down