Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/1fd188fe7a216d3b89cb7514c7d63dac3bd820c9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
5 deletions
@ -68,12 +68,9 @@ namespace NzbDrone.Core.HealthCheck.Checks
}
}
if ( BuildInfo . BuildDateTime < DateTime . UtcNow . AddDays ( - 14 ) )
if ( BuildInfo . BuildDateTime < DateTime . UtcNow . AddDays ( - 14 ) & & _checkUpdateService . AvailableUpdate ( ) ! = null )
{
if ( _checkUpdateService . AvailableUpdate ( ) ! = null )
{
return new HealthCheck ( GetType ( ) , HealthCheckResult . Warning , "New update is available" ) ;
}
return new HealthCheck ( GetType ( ) , HealthCheckResult . Warning , _localizationService . GetLocalizedString ( "UpdateAvailable" ) , "#new-update-is-available" ) ;
}
return new HealthCheck ( GetType ( ) ) ;
@ -484,6 +484,7 @@
"UnsavedChanges" : "Unsaved Changes" ,
"UnselectAll" : "Unselect All" ,
"UpdateAutomaticallyHelpText" : "Automatically download and install updates. You will still be able to install from System: Updates" ,
"UpdateAvailable" : "New update is available" ,
"UpdateCheckStartupNotWritableMessage" : "Cannot install update because startup folder '{0}' is not writable by the user '{1}'." ,
"UpdateCheckStartupTranslocationMessage" : "Cannot install update because startup folder '{0}' is in an App Translocation folder." ,
"UpdateCheckUINotWritableMessage" : "Cannot install update because UI folder '{0}' is not writable by the user '{1}'." ,