Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/e5fa098d66e5e725e92c1446b899564d2cb45483?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
13 additions and
5 deletions
@ -70,7 +70,11 @@ namespace NzbDrone.Core
var deskMetricsClient = new DeskMetricsClient ( Kernel . Get < ConfigProvider > ( ) . UGuid . ToString ( ) , appId , _enviromentProvider . Version ) ;
var deskMetricsClient = new DeskMetricsClient ( Kernel . Get < ConfigProvider > ( ) . UGuid . ToString ( ) , appId , _enviromentProvider . Version ) ;
Kernel . Bind < IDeskMetricsClient > ( ) . ToConstant ( deskMetricsClient ) ;
Kernel . Bind < IDeskMetricsClient > ( ) . ToConstant ( deskMetricsClient ) ;
Kernel . Get < AnalyticsProvider > ( ) . Checkpoint ( ) ;
if ( EnviromentProvider . IsProduction )
{
Kernel . Get < AnalyticsProvider > ( ) . Checkpoint ( ) ;
}
}
}
private void InitQuality ( )
private void InitQuality ( )
@ -1,6 +1,7 @@
using System ;
using System ;
using System.Linq ;
using System.Linq ;
using Ninject ;
using Ninject ;
using NzbDrone.Common ;
using NzbDrone.Core.Model.Notification ;
using NzbDrone.Core.Model.Notification ;
using NzbDrone.Core.Providers ;
using NzbDrone.Core.Providers ;
@ -33,7 +34,10 @@ namespace NzbDrone.Core.Jobs
public void Start ( ProgressNotification notification , int targetId , int secondaryTargetId )
public void Start ( ProgressNotification notification , int targetId , int secondaryTargetId )
{
{
_analyticsProvider . Checkpoint ( ) ;
if ( EnviromentProvider . IsProduction )
{
_analyticsProvider . Checkpoint ( ) ;
}
}
}
}
}
}
}
@ -34,7 +34,7 @@ namespace NzbDrone.Core.Providers
try
try
{
{
//Don't report anything unless working from master branch.
//Don't report anything unless working from master branch.
if ( ! IsOnMasterBranch ( ) | | ! EnviromentProvider . IsProduction )
if ( ! IsOnMasterBranch ( ) )
return ;
return ;
if ( EnviromentProvider . IsNewInstall )
if ( EnviromentProvider . IsNewInstall )