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

17 lines
411 B

using System.Linq;
using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.Tv.Events
{
public class SeriesDeletedEvent : IEvent
{
public Series Series { get; private set; }
public bool DeleteFiles { get; private set; }
public SeriesDeletedEvent(Series series, bool deleteFiles)
{
Series = series;
DeleteFiles = deleteFiles;
}
}
}