Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/commit/ef9430424bd748380109e4d4fc6c73f815be8497?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
0 additions and
4 deletions
@ -21,7 +21,6 @@ public class ConfigurationFinderTest
ConfigurationFinder sut )
{
paths . DefaultConfigFilename . Returns ( "recyclarr.yml" ) ;
paths . ConfigPath . Returns ( @"app\data" ) ;
appContext . BaseDirectory . Returns ( @"base\path" ) ;
fs . AddFile ( @"base\path\recyclarr.yml" , new MockFileData ( "" ) ) ;
@ -38,7 +37,6 @@ public class ConfigurationFinderTest
ConfigurationFinder sut )
{
paths . ConfigPath . Returns ( @"app\data\recyclarr.yml" ) ;
appContext . BaseDirectory . Returns ( @"base\path" ) ;
var path = sut . FindConfigPath ( ) ;
@ -53,9 +51,7 @@ public class ConfigurationFinderTest
ConfigurationFinder sut )
{
paths . DefaultConfigFilename . Returns ( "recyclarr.yml" ) ;
paths . ConfigPath . Returns ( @"app\data" ) ;
appContext . BaseDirectory . Returns ( @"base\path" ) ;
fs . AddFile ( @"base\path\recyclarr.yml" , new MockFileData ( "" ) ) ;
fs . AddFile ( @"app\data\recyclarr.yml" , new MockFileData ( "" ) ) ;