mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-03 06:07:43 +01:00
Fixed: Fall back to sorting by release title if artist is not matched
This commit is contained in:
parent
ef1e744e2f
commit
64c2fb2dee
1 changed files with 1 additions and 1 deletions
|
|
@ -172,7 +172,7 @@ public PagingResource<QueueResource> GetQueue(bool includeUnknownArtistItems = f
|
|||
case "status":
|
||||
return q => q.Status;
|
||||
case "artists.sortName":
|
||||
return q => q.Artist?.SortName ?? string.Empty;
|
||||
return q => q.Artist?.SortName ?? q.Title;
|
||||
case "title":
|
||||
return q => q.Title;
|
||||
case "album":
|
||||
|
|
|
|||
Loading…
Reference in a new issue