mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-24 06:17:08 -04:00
Fixed: Fall back to sorting by release title if series is not matched
Closes #5151
This commit is contained in:
parent
80dd4ce3a1
commit
bd937b9dd3
1 changed files with 1 additions and 1 deletions
|
@ -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":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue