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/7320342123d6ed9296b9c13c305d3ab3a1da0314/Exceptron.Client/fastJSON/Getters.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/Exceptron.Client/fastJSON/Getters.cs

22 lines
441 B

//http://fastjson.codeplex.com/
//http://fastjson.codeplex.com/license
using System;
using System.Collections.Generic;
namespace Exceptron.Client.fastJSON
{
internal class Getters
{
public string Name;
public JSON.GenericGetter Getter;
public Type propertyType;
}
internal class DatasetSchema
{
public List<string> Info { get; set; }
public string Name { get; set; }
}
}