Fixed: Queue broken when sorting by Album ReleaseDate

This commit is contained in:
Qstick 2021-04-17 22:12:45 -04:00
commit 9696eb5ca2
3 changed files with 3 additions and 3 deletions

View file

@ -126,7 +126,7 @@ namespace Lidarr.Api.V1.Queue
return q => q.Album;
case "albums.title":
return q => q.Album?.Title ?? string.Empty;
case "album.releaseDate":
case "albums.releaseDate":
return q => q.Album?.ReleaseDate ?? DateTime.MinValue;
case "quality":
return q => q.Quality;