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/7320342123d6ed9296b9c13c305d3ab3a1da0314/NzbDrone.Core/Messaging/Events/CommandExecutedEvent.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/NzbDrone.Core/Messaging/Events/CommandExecutedEvent.cs

15 lines
349 B

12 years ago
using NzbDrone.Common.Messaging;
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.Messaging.Events
{
public class CommandExecutedEvent : IEvent
{
public Command Command { get; private set; }
public CommandExecutedEvent(Command trackedCommand)
{
Command = trackedCommand;
}
}
}