Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/blame/commit/9ff60cba638c6579974d8db56862639da1e5daad/NzbDrone/Program.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone/Program.cs

22 lines
456 B

15 years ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Console
{
class Program
{
static void Main(string[] args)
{
var server = new CassiniDev.CassiniDevServer();
server.StartServer(@"D:\Opensource\Spongebob\NzbDrone.Web");
System.Console.WriteLine(server.NormalizeUrl(@"series"));
System.Console.ReadLine();
}
}
}