Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/bb2548a08d5b36ad520a59f6cb957762a646a54e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
5 deletions
@ -119,7 +119,7 @@ namespace NzbDrone.Common.Instrumentation.Sentry
o . Environment = BuildInfo . Branch ;
// Crash free run statistics (sends a ping for healthy and for crashes sessions)
o . AutoSessionTracking = tru e;
o . AutoSessionTracking = fals e;
// Caches files in the event device is offline
// Sentry creates a 'sentry' sub directory, no need to concat here
@ -148,7 +148,7 @@ namespace NzbDrone.Common.Instrumentation.Sentry
_debounce = new SentryDebounce ( ) ;
// initialize to true and reconfigure later
// Otherwise it will default to false and any errors occur ing
// Otherwise it will default to false and any errors occur r ing
// before config file gets read will not be filtered
FilterEvents = true ;
SentryEnabled = true ;
@ -207,9 +207,7 @@ namespace NzbDrone.Common.Instrumentation.Sentry
private void OnError ( Exception ex )
{
var webException = ex as WebException ;
if ( webException ! = null )
if ( ex is WebException webException )
{
var response = webException . Response as HttpWebResponse ;
var statusCode = response ? . StatusCode ;