Fixed: Fall back to sorting by release title if artist is not matched

This commit is contained in:
Qstick 2022-09-26 18:54:00 -05:00
commit 64c2fb2dee

View file

@ -172,7 +172,7 @@ namespace Lidarr.Api.V1.Queue
case "status": case "status":
return q => q.Status; return q => q.Status;
case "artists.sortName": case "artists.sortName":
return q => q.Artist?.SortName ?? string.Empty; return q => q.Artist?.SortName ?? q.Title;
case "title": case "title":
return q => q.Title; return q => q.Title;
case "album": case "album":