Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/b06a58966efb911e5c7d244d064bf5d8077c71d1/NzbDrone.Test.Dummy/DummyApp.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using System;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Test.Dummy
|
|
|
|
|
{
|
|
|
|
|
public class DummyApp
|
|
|
|
|
{
|
|
|
|
|
public const string DUMMY_PROCCESS_NAME = "NzbDrone.Test.Dummy";
|
|
|
|
|
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine("Dummy process. ID:{0} Path:{1}", Process.GetCurrentProcess().Id, Process.GetCurrentProcess().MainModule.FileName);
|
|
|
|
|
Console.ReadLine();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|