Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/70dcacb41bfeef68f85961a52020453f6095587a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
5 additions and
2 deletions
@ -6,6 +6,7 @@ using Exceptioneer.WindowsFormsClient;
using NLog ;
using Ninject ;
using NzbDrone.Common ;
using NzbDrone.Common.Model ;
namespace NzbDrone.Providers
{
@ -16,17 +17,19 @@ namespace NzbDrone.Providers
private readonly IISProvider _iisProvider ;
private readonly ProcessProvider _processProvider ;
private readonly WebClientProvider _webClientProvider ;
private readonly ConfigFileProvider _configFileProvider ;
private int _pingFailCounter ;
private Timer _pingTimer ;
[Inject]
public MonitoringProvider ( ProcessProvider processProvider , IISProvider iisProvider ,
WebClientProvider webClientProvider )
WebClientProvider webClientProvider , ConfigFileProvider configFileProvider )
{
_processProvider = processProvider ;
_iisProvider = iisProvider ;
_webClientProvider = webClientProvider ;
_configFileProvider = configFileProvider ;
}
public MonitoringProvider ( )
@ -68,7 +71,7 @@ namespace NzbDrone.Providers
public virtual void PingServer ( object sender , ElapsedEventArgs e )
{
if ( ! _iisProvider . ServerStarted ) return ;
if ( ! _iisProvider . ServerStarted | | _configFileProvider . AuthenticationType = = AuthenticationType . Windows ) return ;
try
{