1
0
Fork 0
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:
Qstick 2021-09-29 08:07:18 -05:00 committed by GitHub
parent 388a43a3f9
commit 99ccaab6a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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",