Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/blame/commit/5730a67fb32b399f8e2be79e05d31aa28844faa9/NzbDrone.Core/Notifications/NotificationBase.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using System;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Core.Tv;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Notifications
|
|
|
|
|
{
|
|
|
|
|
public abstract class NotificationBase : INotification
|
|
|
|
|
{
|
|
|
|
|
public abstract string Name { get; }
|
|
|
|
|
|
|
|
|
|
public NotificationDefinition InstanceDefinition { get; set; }
|
|
|
|
|
|
|
|
|
|
public abstract void OnGrab(string message);
|
|
|
|
|
public abstract void OnDownload(string message, Series series);
|
|
|
|
|
public abstract void AfterRename(Series series);
|
|
|
|
|
}
|
|
|
|
|
}
|