From 560cf53fe18c826701aac1f7d971447853c9b575 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Mon, 21 Jan 2019 19:20:32 -0500 Subject: [PATCH] Fix for Bazarr not updating automatically anymore. --- bazarr/scheduler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr/scheduler.py b/bazarr/scheduler.py index 4e1b59d52..221c1640f 100644 --- a/bazarr/scheduler.py +++ b/bazarr/scheduler.py @@ -61,7 +61,7 @@ else: scheduler = BackgroundScheduler() if no_update is False: - if settings.sonarr.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: scheduler.add_job(check_and_apply_update, CronTrigger(year='2100'), hour=4, id='update_bazarr', name='Update bazarr from source on Github')