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

12 lines
263 B

using System.Collections.Generic;
namespace NzbDrone.Core.Model.Xbmc
{
public class ErrorResult
{
public string Id { get; set; }
public string JsonRpc { get; set; }
public Dictionary<string, string> Error { get; set; }
}
}