Merge pull request #1188 from croneter/fix-dialog
Fix sync dialog showing in certain cases even though user opted out
This commit is contained in:
commit
07e13e0985
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ class Sync(backgroundthread.KillableThread):
|
||||||
"""
|
"""
|
||||||
if app.SYNC.run_lib_scan in ("full", "repair"):
|
if app.SYNC.run_lib_scan in ("full", "repair"):
|
||||||
LOG.info('Full library scan requested, starting')
|
LOG.info('Full library scan requested, starting')
|
||||||
self.start_library_sync(show_dialog=True,
|
self.start_library_sync(show_dialog=app.SYNC.run_lib_scan == 'repair',
|
||||||
repair=app.SYNC.run_lib_scan == 'repair',
|
repair=app.SYNC.run_lib_scan == 'repair',
|
||||||
block=True)
|
block=True)
|
||||||
if (not self.sync_successful and
|
if (not self.sync_successful and
|
||||||
|
|
Loading…
Reference in a new issue