Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/src/commit/f72d4dd394cc917c6d6012c03e8cb5b3e3cca019/NzbDrone.Core/Notifications/INotification.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Core/Notifications/INotification.cs

18 lines
418 B

using NzbDrone.Core.Tv;
namespace NzbDrone.Core.Notifications
{
public interface INotification
{
string Name { get; }
string ImplementationName { get; }
string Link { get; }
NotificationDefinition InstanceDefinition { get; set; }
void OnGrab(string message);
void OnDownload(string message, Series series);
void AfterRename(Series series);
}
}