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

Closes #5151
This commit is contained in:
Mark McDowall 2022-09-24 22:57:07 -07:00
parent 80dd4ce3a1
commit bd937b9dd3
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ namespace Sonarr.Api.V3.Queue
case "status":
return q => q.Status;
case "series.sortTitle":
return q => q.Series?.SortTitle ?? string.Empty;
return q => q.Series?.SortTitle ?? q.Title;
case "title":
return q => q.Title;
case "episode":