mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
Make view fix less aggressive
This commit is contained in:
parent
f37fd7c983
commit
3ac5c4ebb0
1 changed files with 2 additions and 2 deletions
|
@ -246,10 +246,10 @@ def get_sync():
|
||||||
except Exception:
|
except Exception:
|
||||||
sync = {}
|
sync = {}
|
||||||
|
|
||||||
sync['Libraries'] = list(set(sync.get('Libraries', [])))
|
sync['Libraries'] = sync.get('Libraries', [])
|
||||||
sync['RestorePoint'] = sync.get('RestorePoint', {})
|
sync['RestorePoint'] = sync.get('RestorePoint', {})
|
||||||
sync['Whitelist'] = list(set(sync.get('Whitelist', [])))
|
sync['Whitelist'] = list(set(sync.get('Whitelist', [])))
|
||||||
sync['SortedViews'] = list(set(sync.get('SortedViews', [])))
|
sync['SortedViews'] = sync.get('SortedViews', [])
|
||||||
|
|
||||||
return sync
|
return sync
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue