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/8d5e92d60265efed738e6fed41a3decf708d63b6/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; }
}
}