mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
Fixed: Fall back to sorting by release title if artist is not matched
Fixes #1870
This commit is contained in:
@@ -176,7 +176,7 @@ namespace Readarr.Api.V1.Queue
|
||||
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":
|
||||
|
||||
Reference in New Issue
Block a user