Fixed: Queue fails when sorting by Album columns with null Albums

Fixes #771
This commit is contained in:
Qstick 2019-04-22 20:08:09 -04:00
parent a4a3bc5127
commit ea3534b204
1 changed files with 2 additions and 2 deletions

View File

@ -144,9 +144,9 @@ namespace Lidarr.Api.V1.Queue
case "album":
return q => q.Album;
case "album.title":
return q => q.Album.Title;
return q => q.Album?.Title;
case "album.releaseDate":
return q => q.Album.ReleaseDate;
return q => q.Album?.ReleaseDate;
case "language":
return q => q.Language;
case "quality":