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