Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/8522991f7bcb7d346efa07a577c0a4ffe3dd879d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
1 deletions
@ -5,6 +5,7 @@ using System.IO;
using System.Linq ;
using FluentValidation.Results ;
using NzbDrone.Common.Extensions ;
using NzbDrone.Core.HealthCheck ;
namespace NzbDrone.Core.Notifications.Notifiarr
{
@ -87,7 +88,7 @@ namespace NzbDrone.Core.Notifications.Notifiarr
var variables = new StringDictionary ( ) ;
variables . Add ( "Lidarr_EventType" , "HealthIssue" ) ;
variables . Add ( "Lidarr_Health_Issue_Level" , nameof( healthCheck . Type ) ) ;
variables . Add ( "Lidarr_Health_Issue_Level" , E num. GetN ame( type of( HealthCheckResult ) , healthCheck . Type ) ) ;
variables . Add ( "Lidarr_Health_Issue_Message" , healthCheck . Message ) ;
variables . Add ( "Lidarr_Health_Issue_Type" , healthCheck . Source . Name ) ;
variables . Add ( "Lidarr_Health_Issue_Wiki" , healthCheck . WikiUrl . ToString ( ) ? ? string . Empty ) ;