mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
Fixed: Sorting tables by artist/album
Fixes Sentry LIDARR-10A Fixes Sentry LIDARR-105 Fixes Sentry LIDARR-109
This commit is contained in:
parent
0f5531af4d
commit
2e1e2137a6
10 changed files with 20 additions and 20 deletions
|
@ -118,13 +118,13 @@ namespace Lidarr.Api.V1.Queue
|
|||
{
|
||||
case "status":
|
||||
return q => q.Status;
|
||||
case "artist.sortName":
|
||||
case "artists.sortName":
|
||||
return q => q.Artist?.SortName;
|
||||
case "title":
|
||||
return q => q.Title;
|
||||
case "album":
|
||||
return q => q.Album;
|
||||
case "album.title":
|
||||
case "albums.title":
|
||||
return q => q.Album?.Title;
|
||||
case "album.releaseDate":
|
||||
return q => q.Album?.ReleaseDate;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue