Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/3d33606d7e5292bed0f4a9a96d43d9d1972803ad
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
0 deletions
@ -1,4 +1,5 @@
using System ;
using System.Linq ;
using System.Data.Common ;
using System.Reflection ;
using System.Threading ;
@ -41,6 +42,11 @@ namespace NzbDrone.Web
RegisterRoutes ( RouteTable . Routes ) ;
//base.OnApplicationStarted();
AreaRegistration . RegisterAllAreas ( ) ;
var razor = ViewEngines . Engines . Where ( e = > e . GetType ( ) = = typeof ( RazorViewEngine ) ) . Single ( ) ;
ViewEngines . Engines . Clear ( ) ;
ViewEngines . Engines . Add ( razor ) ;
RegisterGlobalFilters ( GlobalFilters . Filters ) ;
Logger . Debug ( "Fully initialized and ready." ) ;
@ -71,6 +71,8 @@ namespace NzbDrone
IISProcess . BeginErrorReadLine ( ) ;
IISProcess . BeginOutputReadLine ( ) ;
IISProcess . PriorityClass = ProcessPriorityClass . AboveNormal ;
//Start Ping
_pingTimer = new Timer ( 300000 ) { AutoReset = true } ;
_pingTimer . Elapsed + = ( PingServer ) ;