mirror of
https://github.com/Radarr/Radarr
synced 2026-01-06 23:55:25 +01:00
Fixed: Sorting of queue by movie title when unknown items are included
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
parent
2328b384e2
commit
3c7f80612d
1 changed files with 1 additions and 1 deletions
|
|
@ -125,7 +125,7 @@ private PagingResource<QueueResource> GetQueue(PagingResource<QueueResource> pag
|
|||
case "status":
|
||||
return q => q.Status;
|
||||
case "movies.sortTitle":
|
||||
return q => q.Movie?.SortTitle;
|
||||
return q => q.Movie?.SortTitle ?? string.Empty;
|
||||
case "title":
|
||||
return q => q.Title;
|
||||
case "languages":
|
||||
|
|
|
|||
Loading…
Reference in a new issue