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

10 lines
210 B

namespace NzbDrone.Core.Model.Xbmc
{
public class XbmcJsonResult<T>
{
public string Id { get; set; }
public string JsonRpc { get; set; }
public T Result { get; set; }
}
}