Companion: Fix AttributeError

This commit is contained in:
tomkat83 2017-05-17 15:23:39 +02:00
parent 6804fcf543
commit 88d1623909
1 changed files with 8 additions and 4 deletions

View File

@ -156,10 +156,14 @@ class Playqueue(Thread):
# Chances are that we got an empty Kodi playlist due to
# Kodi exit
return
if (old_item.file.startswith('plugin://') and
not old_item['file'].startswith(PLUGIN)):
# Ignore media by other addons
continue
try:
if (old_item.file.startswith('plugin://') and
not old_item['file'].startswith(PLUGIN)):
# Ignore media by other addons
continue
except AttributeError:
# were not passed a filename; ignore
pass
if new_item.get('id') is None:
identical = old_item.file == new_item['file']
else: