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/6694aaeded688fb09f846ae5986097909199dd18/NzbDrone.Core/MediaFiles/Events/EpisodeFileDeletedEvent.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
using NzbDrone.Common.Messaging;
|
|
|
|
namespace NzbDrone.Core.MediaFiles.Events
|
|
{
|
|
public class EpisodeFileDeletedEvent : IEvent
|
|
{
|
|
public EpisodeFile EpisodeFile { get; private set; }
|
|
|
|
public EpisodeFileDeletedEvent(EpisodeFile episodeFile)
|
|
{
|
|
EpisodeFile = episodeFile;
|
|
}
|
|
}
|
|
} |