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/9b9e1e20eb035a3c026f2a79f3aa6fc8406199e2/NzbDrone.Core/Model/Xbmc/VersionResult.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/NzbDrone.Core/Model/Xbmc/VersionResult.cs

12 lines
263 B

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