Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/2c56d606780a8aadc51cae1989432afe0be6b8d3
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
4 additions and
4 deletions
@ -32,7 +32,7 @@ namespace NzbDrone.Core.Test.Configuration
[Test]
public void Get_value_should_return_default_when_no_value ( )
{
Subject . RssSyncInterval . Should ( ) . Be ( 15 ) ;
Subject . RssSyncInterval . Should ( ) . Be ( 60 ) ;
}
[Test]
@ -47,7 +47,7 @@ namespace NzbDrone.Core.Test.Configuration
public void get_value_with_out_persist_should_not_store_default_value ( )
{
var interval = Subject . RssSyncInterval ;
interval . Should ( ) . Be ( 15 ) ;
interval . Should ( ) . Be ( 60 ) ;
Mocker . GetMock < IConfigRepository > ( ) . Verify ( c = > c . Insert ( It . IsAny < Config > ( ) ) , Times . Never ( ) ) ;
}
@ -100,7 +100,7 @@ namespace NzbDrone.Core.Configuration
public int RssSyncInterval
{
get { return GetValueInt ( "RssSyncInterval" , 15 ) ; }
get { return GetValueInt ( "RssSyncInterval" , 60 ) ; }
set { SetValue ( "RssSyncInterval" , value ) ; }
}
@ -34,7 +34,7 @@
</div>
<div class="col-sm-2 col-sm-pull-1">
<input type="number" name="rssSyncInterval" class="form-control" min="0" max=" 1 20"/>
<input type="number" name="rssSyncInterval" class="form-control" min="0" max=" 7 20"/>
</div>
</div>
</fieldset>