Fix rare KeyError when using PKC widgets

This commit is contained in:
croneter 2021-01-02 11:54:53 +01:00
parent e60816c022
commit 089294681e
1 changed files with 5 additions and 1 deletions

View File

@ -131,7 +131,11 @@ def _generate_content(api):
# Item is synched to the Kodi db - let's use that info
# (will thus e.g. include additional artwork or metadata)
item = js.item_details(api.kodi_id, api.kodi_type)
else:
# In rare cases, Kodi's JSON reply does not provide 'title' plus potentially
# other fields - let's use the PMS answer to be safe
# See https://github.com/croneter/PlexKodiConnect/issues/1129
if not api.kodi_id or 'title' not in item:
cast = [{
'name': x[0],
'thumbnail': x[1],