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

15 lines
284 B

using System;
namespace NzbDrone.Common.Messaging
{
public class TestCommand : ICommand
{
public int Duration { get; set; }
public String CommandId { get; set; }
public TestCommand()
{
Duration = 4000;
}
}
}