Fixed: Sort authors by lastname, firstname

This commit is contained in:
ta264
2021-05-13 21:31:46 +01:00
parent 62221c2a7f
commit 96db74494a
26 changed files with 279 additions and 27 deletions
+1 -1
View File
@@ -172,7 +172,7 @@ namespace Readarr.Api.V1.Queue
case "status":
return q => q.Status;
case "authors.sortName":
return q => q.Author?.SortName ?? string.Empty;
return q => q.Author?.Metadata.Value.SortName ?? string.Empty;
case "title":
return q => q.Title;
case "book":