mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
if fast sync server plugin fails fall back to full sync and tell the user
This commit is contained in:
parent
a9aad8fabc
commit
ef4696ff2f
2 changed files with 3 additions and 2 deletions
|
@ -352,5 +352,6 @@
|
|||
<string id="33092">Create a backup</string>
|
||||
<string id="33093">Backup folder</string>
|
||||
<string id="33094">Select content type to repair</string>
|
||||
<string id="33095">Failed to retrieve latest updates using fast sync, using full sync.</string>
|
||||
|
||||
</strings>
|
|
@ -136,9 +136,9 @@ class LibrarySync(threading.Thread):
|
|||
if settings('enableMusic') != "true":
|
||||
params['filter'] = "music"
|
||||
url = "{server}/emby/Emby.Kodi.SyncQueue/{UserId}/GetItems?format=json"
|
||||
result = self.doUtils(url, parameters=params)
|
||||
|
||||
try:
|
||||
result = self.doUtils(url, parameters=params)
|
||||
processlist = {
|
||||
|
||||
'added': result['ItemsAdded'],
|
||||
|
@ -149,13 +149,13 @@ class LibrarySync(threading.Thread):
|
|||
|
||||
except (KeyError, TypeError):
|
||||
log.error("Failed to retrieve latest updates using fast sync.")
|
||||
xbmcgui.Dialog().ok(language(29999), language(33095))
|
||||
return False
|
||||
|
||||
else:
|
||||
log.info("Fast sync changes: %s" % result)
|
||||
for action in processlist:
|
||||
self.triage_items(action, processlist[action])
|
||||
|
||||
return True
|
||||
|
||||
def saveLastSync(self):
|
||||
|
|
Loading…
Reference in a new issue