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/dbc4f01d6a5b0205182ba91c53ea64869e9bb74b/Marr.Data/QGen/IQuery.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/Marr.Data/QGen/IQuery.cs

12 lines
232 B

namespace Marr.Data.QGen
{
internal interface IQuery
{
/// <summary>
/// Generates a SQL query for a given entity.
/// </summary>
/// <returns></returns>
string Generate();
}
}