Fix syncing libraries after initial sync is complete

This commit is contained in:
Matt 2021-03-23 20:53:36 -04:00
parent 83e7031da6
commit a1a135d0ea
1 changed files with 22 additions and 13 deletions

View File

@ -77,21 +77,30 @@ class FullSync(object):
self.sync = get_sync()
if library_id:
libraries = library_id.split(',')
for selected in libraries:
if selected not in [x.replace('Mixed:', "") for x in self.sync['Libraries']]:
library = self.get_library(selected)
# Look up library in local Jellyfin database
library = self.get_library(library_id)
if library:
self.sync['Libraries'].append("Mixed:%s" % selected)
if library.media_type in ('mixed', 'movies'):
self.sync['Libraries'].append('Boxsets:%s' % selected)
if library.media_type == 'mixed':
self.sync['Libraries'].append("Mixed:%s" % library_id)
# Include boxsets library
libraries = self.get_libraries()
boxsets = [row.view_id for row in libraries if row.media_type == 'boxsets']
if boxsets:
self.sync['Libraries'].append('Boxsets:%s' % boxsets[0])
elif library.media_type == 'movies':
self.sync['Libraries'].append(library_id)
# Include boxsets library
libraries = self.get_libraries()
boxsets = [row.view_id for row in libraries if row.media_type == 'boxsets']
if boxsets:
self.sync['Libraries'].append('Boxsets:%s' % boxsets[0])
else:
self.sync['Libraries'].append(selected)
# Only called if the library isn't already known about
self.sync['Libraries'].append(library_id)
else:
self.sync['Libraries'].append(library_id)
else:
self.mapping()