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/f826890d2b537679cf08f936c99c64a836b384ff/NzbDrone.Core/Messaging/Commands/IExecute.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/NzbDrone.Core/Messaging/Commands/IExecute.cs

7 lines
191 B

namespace NzbDrone.Core.Messaging.Commands
{
public interface IExecute<TCommand> : IProcessMessage<TCommand> where TCommand : Command
{
void Execute(TCommand message);
}
}