mirror of
https://github.com/Sonarr/Sonarr
synced 2026-04-27 07:31:35 +02: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 @@ public PagingResource<QueueResource> GetQueue(bool includeUnknownSeriesItems = f
|
|||
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…
Reference in a new issue