Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/src/commit/012fa88301c83f5121d964402b85b1e47d6ec24d/NzbDrone/Model/ProcessInfo.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/NzbDrone/Model/ProcessInfo.cs

11 lines
240 B

using System.Diagnostics;
namespace NzbDrone.Model
{
public class ProcessInfo
{
public int Id { get; set; }
public ProcessPriorityClass Priority { get; set; }
public string StartPath { get; set; }
}
}