Remove obsolete code

This commit is contained in:
croneter 2018-12-01 16:52:22 +01:00
parent d972594553
commit a776f940de

View file

@ -44,7 +44,6 @@ class FullSync(common.libsync_mixin):
self.plex_type = None self.plex_type = None
self.section_type = None self.section_type = None
self.processing_thread = None self.processing_thread = None
self.section_initiated = False
self.install_sync_done = utils.settings('SyncInstallRunDone') == 'true' self.install_sync_done = utils.settings('SyncInstallRunDone') == 'true'
self.threader = backgroundthread.ThreaderManager( self.threader = backgroundthread.ThreaderManager(
worker=backgroundthread.NonstoppingBackgroundWorker) worker=backgroundthread.NonstoppingBackgroundWorker)
@ -98,7 +97,6 @@ class FullSync(common.libsync_mixin):
app.SYNC.path_verified = False app.SYNC.path_verified = False
try: try:
# Sync new, updated and deleted items # Sync new, updated and deleted items
self.section_initiated = True
iterator = section['iterator_1'] iterator = section['iterator_1']
# Tell the processing thread about this new section # Tell the processing thread about this new section
queue_info = InitNewSection(section['context'], queue_info = InitNewSection(section['context'],
@ -190,7 +188,6 @@ class FullSync(common.libsync_mixin):
section = iterator_queue.get() section = iterator_queue.get()
if section is None: if section is None:
break break
self.section_initiated = False
# Setup our variables # Setup our variables
self.plex_type = section['plex_type'] self.plex_type = section['plex_type']
self.section_type = section['section_type'] self.section_type = section['section_type']
@ -200,14 +197,6 @@ class FullSync(common.libsync_mixin):
if self.isCanceled() or not self.process_section(section): if self.isCanceled() or not self.process_section(section):
return False return False
# Delete movies that are not on Plex anymore # Delete movies that are not on Plex anymore
if not self.section_initiated:
# Need to make sure that we're telling about this section
queue_info = InitNewSection(self.context,
0,
'',
'',
self.plex_type)
self.queue.put(queue_info)
self.process_delete() self.process_delete()
iterator_queue.task_done() iterator_queue.task_done()
return True return True