Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/a68c8820329ab1b3a8de46a512514e146b808bdf
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
12 additions and
0 deletions
@ -24,6 +24,16 @@ namespace NzbDrone.Common
private static readonly Logger Logger = LogManager . GetCurrentClassLogger ( ) ;
public virtual DateTime GetLastDirectoryWrite ( string path )
{
if ( ! FolderExists ( path ) )
{
throw new DirectoryNotFoundException ( "Directory doesn't exist. " + path ) ;
}
GetFiles ( path , SearchOption . AllDirectories ) ;
}
public virtual bool FolderExists ( string path )
{
return Directory . Exists ( path ) ;
@ -179,6 +179,7 @@ namespace NzbDrone.Core.Test
Mocker . Resolve < TestUrlIndexer > ( ) . FetchRss ( ) ;
Mark500Inconclusive ( ) ;
ExceptionVerification . IgnoreWarns ( ) ;
}
[TestCase("simpsons", 21, 23)]
@ -387,6 +388,7 @@ namespace NzbDrone.Core.Test
{
ExceptionVerification . MarkInconclusive ( typeof ( WebException ) ) ;
ExceptionVerification . MarkInconclusive ( "System.Net.WebException" ) ;
ExceptionVerification . MarkInconclusive ( "(503) Server Unavailable." ) ;
}
}
}