Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/1b6f6845222170af64c6138517f6c9aaafb084bb
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
33 additions and
0 deletions
@ -0,0 +1,32 @@
using System ;
using System.Runtime.CompilerServices ;
using MediaInfoLib ;
namespace NzbDrone.Core.HealthCheck.Checks
{
public class MediaInfoDllCheck : HealthCheckBase
{
[MethodImpl(MethodImplOptions.NoOptimization)]
public override HealthCheck Check ( )
{
try
{
var mediaInfo = new MediaInfo ( ) ;
}
catch ( Exception e )
{
return new HealthCheck ( GetType ( ) , HealthCheckResult . Warning , "MediaInfo could not be loaded " + e . Message ) ;
}
return new HealthCheck ( GetType ( ) ) ;
}
public override bool CheckOnConfigChange
{
get
{
return false ;
}
}
}
}
@ -359,6 +359,7 @@
<Compile Include= "HealthCheck\Checks\DroneFactoryCheck.cs" />
<Compile Include= "HealthCheck\Checks\ImportMechanismCheck.cs" />
<Compile Include= "HealthCheck\Checks\IndexerCheck.cs" />
<Compile Include= "HealthCheck\Checks\MediaInfoDllCheck.cs" />
<Compile Include= "HealthCheck\Checks\MonoVersionCheck.cs" />
<Compile Include= "HealthCheck\Checks\RootFolderCheck.cs" />
<Compile Include= "HealthCheck\Checks\UpdateCheck.cs" />