mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
== None
-> is None
This commit is contained in:
parent
92b4fe80cc
commit
768efccda2
1 changed files with 1 additions and 1 deletions
|
@ -396,7 +396,7 @@ class Library(threading.Thread):
|
||||||
# Get list of updates from server for synced library types and populate work queues
|
# 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 ]))
|
result = self.server.jellyfin.get_sync_queue(last_sync, ",".join([ x for x in query_filter ]))
|
||||||
|
|
||||||
if result == None:
|
if result is None:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
updated = []
|
updated = []
|
||||||
|
|
Loading…
Reference in a new issue