Fix TypeError
This commit is contained in:
parent
751e55b9d5
commit
7b578603ca
1 changed files with 1 additions and 1 deletions
|
@ -1620,7 +1620,7 @@ class LibrarySync(Thread):
|
||||||
for plextype in typus:
|
for plextype in typus:
|
||||||
items.extend(emby_db.itemsByType(plextype))
|
items.extend(emby_db.itemsByType(plextype))
|
||||||
# Shuffle the list to not always start out identically
|
# Shuffle the list to not always start out identically
|
||||||
items = shuffle(items)
|
shuffle(items)
|
||||||
for item in items:
|
for item in items:
|
||||||
self.fanartqueue.put({
|
self.fanartqueue.put({
|
||||||
'itemId': item['plexId'],
|
'itemId': item['plexId'],
|
||||||
|
|
Loading…
Reference in a new issue