The item folder "Pinsamheter" doesn't include the item key positionInSeason. Changing row 117 in getVideoContent() from
if content["type"] == "Season" and content["name"] and item["positionInSeason"]:
to:
if content["type"] == "Season" and "name" in content and "positionInSeason" in item:
solved this issue
Problem description
I'm unable to open some item folders.
Steps to reproduce
System information
Kodi version: 19.4
Platform: Windows
Plugin version: 5.1.14+matrix.1
Log
key error for "positionInSeason "
The item folder "Pinsamheter" doesn't include the item key positionInSeason. Changing row 117 in getVideoContent() from
if content["type"] == "Season" and content["name"] and item["positionInSeason"]:
to:if content["type"] == "Season" and "name" in content and "positionInSeason" in item:
solved this issue