From b9a0d9c922f4237dc4a6504d7cc42784afe32bc5 Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Thu, 30 Jan 2025 21:06:25 -0500 Subject: [PATCH] Added missing settings preventing proper download of subtitles. #2839 --- bazarr/app/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bazarr/app/config.py b/bazarr/app/config.py index cf28db8f1..4f2b34cef 100644 --- a/bazarr/app/config.py +++ b/bazarr/app/config.py @@ -95,6 +95,7 @@ def check_parser_binary(value): Validator('general.use_postprocessing_threshold_movie', must_exist=True, default=False, is_type_of=bool), Validator('general.use_sonarr', must_exist=True, default=False, is_type_of=bool), Validator('general.use_radarr', must_exist=True, default=False, is_type_of=bool), + Validator('general.use_plex', must_exist=True, default=False, is_type_of=bool), Validator('general.path_mappings_movie', must_exist=True, default=[], is_type_of=list), Validator('general.serie_tag_enabled', must_exist=True, default=False, is_type_of=bool), Validator('general.movie_tag_enabled', must_exist=True, default=False, is_type_of=bool),