Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/296d4976730df91948a184ff1fd7afcd6f685f92
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
9 additions and
7 deletions
@ -61,7 +61,7 @@ defaults = {
' ignore_pgs_subs ' : ' False ' ,
' ignore_vobsub_subs ' : ' False ' ,
' ignore_ass_subs ' : ' False ' ,
' adaptive_searching ' : ' Fals e' ,
' adaptive_searching ' : ' Tru e' ,
' adaptive_searching_delay ' : ' 3w ' ,
' adaptive_searching_delta ' : ' 1w ' ,
' enabled_providers ' : ' [] ' ,
@ -215,8 +215,8 @@ const SettingsSubtitlesView: FunctionComponent = () => {
settingKey = "settings-general-adaptive_searching"
> < / Check >
< Message >
When searching for subtitles , Bazarr will reduce search frequency to
limit call to providers .
When enabled, Bazarr will skip searching providers for subtitles which
have been searched recently .
< / Message >
< CollapseBox settingKey = "settings-general-adaptive_searching" >
< Selector
@ -225,8 +225,9 @@ const SettingsSubtitlesView: FunctionComponent = () => {
options = { adaptiveSearchingDelayOption }
> < / Selector >
< Message >
In order to reduce search frequency , how many weeks must Bazarr wait
after initial search .
The delay from the first search to adaptive searching applying .
During this window Bazarr will continue to search for subtitles ,
even if they have been searched for recently .
< / Message >
< Selector
settingKey = "settings-general-adaptive_searching_delta"
@ -234,8 +235,9 @@ const SettingsSubtitlesView: FunctionComponent = () => {
options = { adaptiveSearchingDeltaOption }
> < / Selector >
< Message >
How often should Bazarr search for subtitles when in adaptive search
mode .
The delay between Bazarr searching for subtitles in adaptive search
mode . If the media has been searched for more recently than this
value , Bazarr will skip searching for subtitles .
< / Message >
< / CollapseBox >
< Check