From 448714e6a29e010373d587c7bfa284456fae6b38 Mon Sep 17 00:00:00 2001 From: croneter Date: Mon, 25 Mar 2019 20:51:28 +0100 Subject: [PATCH] Fix TypeError on Kodi start --- resources/lib/entrypoint.py | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lib/entrypoint.py b/resources/lib/entrypoint.py index 7ffdc36b..7be95950 100644 --- a/resources/lib/entrypoint.py +++ b/resources/lib/entrypoint.py @@ -429,6 +429,7 @@ def browse_plex(key=None, plex_type=None, section_id=None, synched=True, except AttributeError: LOG.error('Could not browse to key %s, section %s', key, section_id) + return show_listing(xml, plex_type, section_id, synched, key)