Move check whether Kodi quit

This commit is contained in:
tomkat83 2017-05-17 15:27:32 +02:00
parent 88d1623909
commit 8e70955ded
1 changed files with 4 additions and 4 deletions

View File

@ -146,16 +146,16 @@ class Playqueue(Thread):
index = list(range(0, len(old)))
log.debug('Comparing new Kodi playqueue %s with our play queue %s'
% (new, old))
if self.thread_stopped():
# Chances are that we got an empty Kodi playlist due to
# Kodi exit
return
for i, new_item in enumerate(new):
if (new_item['file'].startswith('plugin://') and
not new_item['file'].startswith(PLUGIN)):
# Ignore new media added by other addons
continue
for j, old_item in enumerate(old):
if self.thread_stopped():
# Chances are that we got an empty Kodi playlist due to
# Kodi exit
return
try:
if (old_item.file.startswith('plugin://') and
not old_item['file'].startswith(PLUGIN)):