mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-10 00:37:49 +08:00
Fix for --no-update
This commit is contained in:
parent
e42d1e2dd2
commit
badfb3f866
1 changed files with 7 additions and 4 deletions
|
@ -3,7 +3,7 @@ bazarr_version = '0.6.2'
|
|||
import gc
|
||||
gc.enable()
|
||||
|
||||
from get_argv import config_dir
|
||||
from get_argv import config_dir, no_update
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
@ -12,7 +12,8 @@ sys.setdefaultencoding('utf8')
|
|||
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'libs/'))
|
||||
|
||||
import sqlite3
|
||||
from update_modules import *
|
||||
if no_update is False:
|
||||
from update_modules import *
|
||||
from init import *
|
||||
from update_db import *
|
||||
|
||||
|
@ -82,7 +83,8 @@ from get_providers import *
|
|||
from get_series import *
|
||||
from get_episodes import *
|
||||
from get_settings import base_url, ip, port, path_replace, path_replace_movie
|
||||
from check_update import check_and_apply_update
|
||||
if no_update is False:
|
||||
from check_update import check_and_apply_update
|
||||
from list_subtitles import store_subtitles, store_subtitles_movie, series_scan_subtitles, movies_scan_subtitles, list_missing_subtitles, list_missing_subtitles_movies
|
||||
from get_subtitle import download_subtitle, series_download_subtitles, movies_download_subtitles, wanted_download_subtitles, wanted_search_missing_subtitles, manual_search, manual_download_subtitle
|
||||
from utils import history_log, history_log_movie
|
||||
|
@ -1229,6 +1231,7 @@ def check_update():
|
|||
authorize()
|
||||
ref = request.environ['HTTP_REFERER']
|
||||
|
||||
if no_update is False:
|
||||
check_and_apply_update()
|
||||
|
||||
redirect(ref)
|
||||
|
|
Loading…
Reference in a new issue