mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-25 10:16:11 +00:00
Handle empty list of updates from server
This commit is contained in:
parent
c9d3e7470b
commit
92b4fe80cc
1 changed files with 7 additions and 3 deletions
|
@ -393,12 +393,16 @@ class Library(threading.Thread):
|
|||
query_filter = list(set(filters) - set(include))
|
||||
|
||||
try:
|
||||
# Get list of updates from server for synced library types and populate work queues
|
||||
result = self.server.jellyfin.get_sync_queue(last_sync, ",".join([ x for x in query_filter ]))
|
||||
|
||||
if result == None:
|
||||
return True
|
||||
|
||||
updated = []
|
||||
userdata = []
|
||||
removed = []
|
||||
|
||||
# Get list of updates from server for synced library types and populate work queues
|
||||
result = self.server.jellyfin.get_sync_queue(last_sync, ",".join([ x for x in query_filter ]))
|
||||
|
||||
updated.extend(result['ItemsAdded'])
|
||||
updated.extend(result['ItemsUpdated'])
|
||||
userdata.extend(result['UserDataChanged'])
|
||||
|
|
Loading…
Reference in a new issue