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/147bb5476bbfe589f2d04206d7dc1e00017ee829/NzbDrone.Core/Tv/Events/SeriesAddedEvent.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Core/Tv/Events/SeriesAddedEvent.cs

14 lines
277 B

using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.Tv.Events
{
public class SeriesAddedEvent : IEvent
{
public Series Series { get; private set; }
public SeriesAddedEvent(Series series)
{
Series = series;
}
}
}