Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/8dcfbe7b9d59a92e5effdec7164cb273e934bd66 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Little hack to deal with backgrid's setting of sortKey

pull/4/head
Mark McDowall 11 years ago
parent 6ba17782aa
commit 8dcfbe7b9d

@ -33,6 +33,13 @@ namespace NzbDrone.Api.History
SortDirection = pagingResource.SortDirection
};
//This is a hack to deal with backgrid setting the sortKey to the column name instead of sortValue
if (pagingSpec.SortKey.Equals("series", StringComparison.InvariantCultureIgnoreCase))
{
pagingSpec.SortKey = "series.title";
}
if (episodeId.HasValue)
{
int i = (int)episodeId;

Loading…
Cancel
Save