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/af4063c3e2ecbd8aa331720301ef3586894c36fd/NzbDrone.Common/Messaging/TestCommandExecutor.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
using System.Threading;
|
|
|
|
namespace NzbDrone.Common.Messaging
|
|
{
|
|
public class TestCommandExecutor : IExecute<TestCommand>
|
|
{
|
|
public void Execute(TestCommand message)
|
|
{
|
|
Thread.Sleep(message.Duration);
|
|
}
|
|
}
|
|
} |