Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/blame/commit/bb103947a21cfbeb87fcc143add41cdef61983a4/NzbDrone.Common/Messaging/Events/CommandExecutedEvent.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/NzbDrone.Common/Messaging/Events/CommandExecutedEvent.cs

12 lines
268 B

namespace NzbDrone.Common.Messaging.Events
{
public class CommandExecutedEvent : IEvent
{
public ICommand Command { get; private set; }
public CommandExecutedEvent(ICommand command)
{
Command = command;
}
}
}