mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-13 01:14:38 +08:00
Fix for minimum score too high
This commit is contained in:
parent
35cba2272f
commit
265416ec67
1 changed files with 2 additions and 2 deletions
4
init.py
4
init.py
|
@ -140,7 +140,7 @@ except sqlite3.OperationalError:
|
||||||
cfg.set(section, 'branch', "master")
|
cfg.set(section, 'branch', "master")
|
||||||
cfg.set(section, 'auto_update', "True")
|
cfg.set(section, 'auto_update', "True")
|
||||||
cfg.set(section, 'single_language', "False")
|
cfg.set(section, 'single_language', "False")
|
||||||
cfg.set(section, 'minimum_score', "100")
|
cfg.set(section, 'minimum_score', "90")
|
||||||
cfg.set(section, 'use_scenename', "False")
|
cfg.set(section, 'use_scenename', "False")
|
||||||
cfg.set(section, 'use_postprocessing', "False")
|
cfg.set(section, 'use_postprocessing', "False")
|
||||||
cfg.set(section, 'postprocessing_cmd', "False")
|
cfg.set(section, 'postprocessing_cmd', "False")
|
||||||
|
@ -154,7 +154,7 @@ except sqlite3.OperationalError:
|
||||||
cfg.set(section, 'movie_default_language', '')
|
cfg.set(section, 'movie_default_language', '')
|
||||||
cfg.set(section, 'movie_default_hi', "False")
|
cfg.set(section, 'movie_default_hi', "False")
|
||||||
cfg.set(section, 'page_size', "25")
|
cfg.set(section, 'page_size', "25")
|
||||||
cfg.set(section, 'minimum_score_movie', "100")
|
cfg.set(section, 'minimum_score_movie', "70")
|
||||||
cfg.set(section, 'use_embedded_subs', "False")
|
cfg.set(section, 'use_embedded_subs', "False")
|
||||||
cfg.set(section, 'only_monitored', "False")
|
cfg.set(section, 'only_monitored', "False")
|
||||||
cfg.set(section, 'adaptive_searching', "False")
|
cfg.set(section, 'adaptive_searching', "False")
|
||||||
|
|
Loading…
Reference in a new issue