mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 01:27:00 +00:00
Fixed: Invalid sortkey on artists.sortName
This commit is contained in:
parent
388a43a3f9
commit
99ccaab6a6
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ public static class RequestExtensions
|
||||||
// See src/Lidarr.Api.V1/Queue/QueueModule.cs
|
// See src/Lidarr.Api.V1/Queue/QueueModule.cs
|
||||||
private static readonly HashSet<string> VALID_SORT_KEYS = new HashSet<string>(StringComparer.OrdinalIgnoreCase)
|
private static readonly HashSet<string> VALID_SORT_KEYS = new HashSet<string>(StringComparer.OrdinalIgnoreCase)
|
||||||
{
|
{
|
||||||
"authors.sortname", //Workaround authors table properties not being added on isValidSortKey call
|
"artists.sortname", //Workaround authors table properties not being added on isValidSortKey call
|
||||||
"timeleft",
|
"timeleft",
|
||||||
"estimatedCompletionTime",
|
"estimatedCompletionTime",
|
||||||
"protocol",
|
"protocol",
|
||||||
|
|
Loading…
Reference in a new issue