Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/blame/commit/4989822874a6fd6444751184f317ff28928b215a/Marr.Data/QGen/IQueryBuilder.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/Marr.Data/QGen/IQueryBuilder.cs

13 lines
221 B

namespace Marr.Data.QGen
{
public interface IQueryBuilder
{
string BuildQuery();
}
public interface ISortQueryBuilder : IQueryBuilder
{
string BuildQuery(bool useAltNames);
}
}