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

14 lines
274 B

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