This commit is contained in:
morpheus65535 2019-01-25 23:56:14 -05:00
parent 693c82d57f
commit daf475c216
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ else:
scheduler = BackgroundScheduler()
if not args.no_update:
if settings.general.getboolean('auto-update'):
if settings.general.getboolean('auto_update'):
scheduler.add_job(check_and_apply_update, IntervalTrigger(hours=6), max_instances=1, coalesce=True,
misfire_grace_time=15, id='update_bazarr', name='Update bazarr from source on Github')
else: