mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-05 13:20:32 -05:00
Fixed: Wanted Page Count in UI and Paging, Sort by Album Title
This commit is contained in:
@@ -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
|
||||
},
|
||||
{
|
||||
|
||||
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user