Fixed: Wanted Page Count in UI and Paging, Sort by Album Title

This commit is contained in:
Qstick 2018-03-24 22:20:13 -04:00
parent df4e1e9b26
commit a96df79572
2 changed files with 12 additions and 2 deletions

View File

@ -41,6 +41,7 @@ export const defaultState = {
{
name: 'albumTitle',
label: 'Album Title',
isSortable: true,
isVisible: true
},
{
@ -119,6 +120,7 @@ export const defaultState = {
{
name: 'albumTitle',
label: 'Album Title',
isSortable: true,
isVisible: true
},
{

View File

@ -119,6 +119,10 @@ namespace NzbDrone.Core.Music
{
sortKey = "Artists." + pagingSpec.SortKey.Split('.').Last();
}
else if (pagingSpec.SortKey == "albumTitle")
{
sortKey = "Albums.title";
}
else
{
sortKey = "Albums.releaseDate";
@ -138,11 +142,11 @@ namespace NzbDrone.Core.Music
private int GetMissingAlbumsQueryCount(PagingSpec<Album> pagingSpec, DateTime currentTime)
{
var monitored = 0;
var monitored = "(Albums.[Monitored] = 0) OR (Artists.[Monitored] = 0)";
if (pagingSpec.FilterExpressions.FirstOrDefault().ToString().Contains("True"))
{
monitored = 1;
monitored = "(Albums.[Monitored] = 1) AND (Artists.[Monitored] = 1)";
}
string query = string.Format("SELECT Albums.* FROM (SELECT Tracks.AlbumId, COUNT(*) AS TotalTrackCount," +
@ -180,6 +184,10 @@ namespace NzbDrone.Core.Music
{
sortKey = "Artists." + pagingSpec.SortKey.Split('.').Last();
}
else if (pagingSpec.SortKey == "albumTitle")
{
sortKey = "Albums.title";
}
else
{
sortKey = "Albums.releaseDate";