Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/3d902ad98c280643c22b9d06280694d896d692fd
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
6 additions and
6 deletions
@ -17,23 +17,23 @@ namespace NzbDrone
//Check if full version .NET is installed.
try
{
//var webAssembly = Assembly.Load( "System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a");
Assembly . Load ( "System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" ) ;
}
catch ( Exception e )
catch ( Exception )
{
Console . WriteLine ( "It seems like you don't have full version of .NET f ramework installed. Press any key and you will be directed to download page.") ;
Console . WriteLine ( "It looks like you don't have full version of .NET F ramework installed. Press any key and you will be directed to download page.") ;
Console . Read ( ) ;
try
{
Process . Start ( "http://www.microsoft.com/download/en/details.aspx?id=17851" ) ;
}
catch ( Exception ex )
catch ( Exception )
{
Console . WriteLine ( " Was unable to start default browser. Please visit http://www.microsoft.com/download/en/details.aspx?id=17851 to download .NET f ramework 4.") ;
Console . WriteLine ( " Opps. can't start default browser. Please visit http://www.microsoft.com/download/en/details.aspx?id=17851 to download .NET F ramework 4.") ;
Console . ReadLine ( ) ;
}
return ;
}