Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/bd7b2eb471e86cc3e2ce67fd09707ed188b3bcb0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
19 additions and
4 deletions
@ -94,7 +94,8 @@ defaults = {
' episodes_sync ' : ' 60 ' ,
' excluded_tags ' : ' [] ' ,
' excluded_series_types ' : ' [] ' ,
' use_ffprobe_cache ' : ' True '
' use_ffprobe_cache ' : ' True ' ,
' exclude_season_zero ' : ' False '
} ,
' radarr ' : {
' ip ' : ' 127.0.0.1 ' ,
@ -395,12 +396,12 @@ def save_settings(settings_items):
configure_proxy = True
if key in [ ' settings-sonarr-excluded_tags ' , ' settings-sonarr-only_monitored ' ,
' settings-sonarr-excluded_series_types ' , ' settings .radarr.excluded_tags ' ,
' settings -radarr-only_monitored' ] :
' settings-sonarr-excluded_series_types ' , ' settings -sonarr-exclude_season_zero ' ,
' settings .radarr.excluded_tags' , ' settings -radarr-only_monitored' ] :
exclusion_updated = True
if key in [ ' settings-sonarr-excluded_tags ' , ' settings-sonarr-only_monitored ' ,
' settings-sonarr-excluded_series_types ' ]:
' settings-sonarr-excluded_series_types ' , ' settings-sonarr-exclude_season_zero ' ]:
sonarr_exclusion_updated = True
if key in [ ' settings.radarr.excluded_tags ' , ' settings-radarr-only_monitored ' ] :
@ -390,6 +390,10 @@ def get_exclusion_clause(exclusion_type):
for item in typesList :
where_clause . append ( ( TableShows . seriesType != item ) )
exclude_season_zero = settings . sonarr . getboolean ( ' exclude_season_zero ' )
if exclude_season_zero :
where_clause . append ( ( TableEpisodes . season != 0 ) )
return where_clause
@ -97,6 +97,16 @@ const SettingsSonarrView: FunctionComponent<Props> = () => {
episodes in Sonarr .
< / Message >
< / Input >
< Input >
< Check
label = "Exclude season zero (extras)"
settingKey = "settings-sonarr-exclude_season_zero"
> < / Check >
< Message >
Episodes from season zero ( extras ) from automatic download of
subtitles .
< / Message >
< / Input >
< / Group >
< Group header = "Path Mappings" >
< PathMappingTable type = "sonarr" > < / PathMappingTable >