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/c3273b74e8cae9fc688fc602e08ee39b0d0ad49f/NzbDrone.Common/Model/ProcessInfo.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Common/Model/ProcessInfo.cs

17 lines
465 B

using System.Diagnostics;
namespace NzbDrone.Common.Model
{
public class ProcessInfo
{
public int Id { get; set; }
public string Name { get; set; }
public string StartPath { get; set; }
public ProcessPriorityClass Priority { get; set; }
public override string ToString()
{
return string.Format("{0}:{1} [{2}] [{3}]", Id, Name ?? "Unknown", StartPath ?? "Unknown", Priority);
}
}
}