mirror of
https://github.com/Readarr/Readarr
synced 2025-12-13 20:04:33 +01:00
Fixed: Fall back to sorting by release title if artist is not matched
Fixes #1870
This commit is contained in:
parent
71bd88e531
commit
29e3d8f477
1 changed files with 1 additions and 1 deletions
|
|
@ -176,7 +176,7 @@ public PagingResource<QueueResource> GetQueue(bool includeUnknownAuthorItems = f
|
|||
case "status":
|
||||
return q => q.Status;
|
||||
case "authors.sortName":
|
||||
return q => q.Author?.Metadata.Value.SortName ?? string.Empty;
|
||||
return q => q.Author?.Metadata.Value.SortName ?? q.Title;
|
||||
case "authors.sortNameLastFirst":
|
||||
return q => q.Author?.Metadata.Value.SortNameLastFirst ?? string.Empty;
|
||||
case "title":
|
||||
|
|
|
|||
Loading…
Reference in a new issue