Fix TypeError for Plex Companion
This commit is contained in:
parent
b6197231fa
commit
6980a09171
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ class Playqueue(Thread):
|
||||||
# Chances are that we got an empty Kodi playlist due to
|
# Chances are that we got an empty Kodi playlist due to
|
||||||
# Kodi exit
|
# Kodi exit
|
||||||
return
|
return
|
||||||
if (old_item['file'].startswith('plugin://') and
|
if (old_item.file.startswith('plugin://') and
|
||||||
not old_item['file'].startswith(PLUGIN)):
|
not old_item['file'].startswith(PLUGIN)):
|
||||||
# Ignore media by other addons
|
# Ignore media by other addons
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Add table
Reference in a new issue