Make sure sync libraries are formatted properly

This commit is contained in:
Matt 2021-05-02 12:56:32 -04:00
parent 8b89ff3deb
commit be518f845b
1 changed files with 3 additions and 0 deletions

View File

@ -335,6 +335,9 @@ def get_sync():
sync['Whitelist'] = list(set(sync.get('Whitelist', []))) sync['Whitelist'] = list(set(sync.get('Whitelist', [])))
sync['SortedViews'] = sync.get('SortedViews', []) sync['SortedViews'] = sync.get('SortedViews', [])
# Temporary cleanup from #494/#511, remove in a future version
sync['Libraries'] = [lib_id for lib_id in sync['Libraries'] if ',' not in lib_id]
return sync return sync