From 6564ce62f2da19702aa1d6368c0455d8206fb64a Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Wed, 27 Jan 2021 14:11:18 -0500 Subject: [PATCH] Improving releases and update process - part 2. --- bazarr/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bazarr/main.py b/bazarr/main.py index 0203f2e42..92a94ebe8 100644 --- a/bazarr/main.py +++ b/bazarr/main.py @@ -31,13 +31,16 @@ from get_series import * from get_episodes import * from get_movies import * -from check_update import check_and_apply_update +from check_update import check_and_apply_update, check_releases from server import app, webserver from functools import wraps # Check and install update on startup when running on Windows from installer if args.release_update: check_and_apply_update() +# If not, update releases cache instead. +else: + check_releases() configure_proxy_func()