1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-24 08:43:01 +00:00
This commit is contained in:
morpheus65535 2019-01-25 23:56:14 -05:00
parent 693c82d57f
commit daf475c216

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: