Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/aa37b6584225aab65fcfdef6300a262749bbc293
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
2 deletions
@ -53,7 +53,7 @@ namespace NzbDrone.Core.Test.MediaFiles.EpisodeFileMovingServiceTests
. Setup ( s = > s . BuildSeasonPath ( It . IsAny < Series > ( ) , It . IsAny < int > ( ) ) )
. Returns ( @"C:\Test\TV\Series\Season 01" . AsOsAgnostic ( ) ) ;
var rootFolder = @"C:\Test\TV ". AsOsAgnostic ( ) ;
var rootFolder = @"C:\Test\TV \ ". AsOsAgnostic ( ) ;
Mocker . GetMock < IDiskProvider > ( )
. Setup ( s = > s . FolderExists ( rootFolder ) )
. Returns ( true ) ;
@ -194,7 +194,7 @@ namespace NzbDrone.Core.MediaFiles
{
Ensure . That ( directoryName , ( ) = > directoryName ) . IsNotNullOrWhiteSpace ( ) ;
var parentFolder = Path . GetDirectoryName ( directoryName ) ;
var parentFolder = new OsPath ( directoryName ) . Directory . FullPath ;
if ( ! _diskProvider . FolderExists ( parentFolder ) )
{
CreateFolder ( parentFolder ) ;