Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/src/commit/174689f533a4a3d0d01853c091cefce8b446f358/Marr.Data/QGen/IQueryBuilder.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/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);
}
}