Fixed: Wanted cutoff page shows incorrect count

This commit is contained in:
Qstick 2018-04-15 00:49:16 -04:00
parent b661344ba8
commit 9bd020a130
1 changed files with 2 additions and 2 deletions

View File

@ -210,11 +210,11 @@ namespace NzbDrone.Core.Music
private int GetCutOffAlbumsQueryCount(PagingSpec<Album> pagingSpec, List<QualitiesBelowCutoff> qualitiesBelowCutoff, List<LanguagesBelowCutoff> languagesBelowCutoff)
{
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 TrackFiles.AlbumId, TrackFiles.Language, COUNT(*) AS FileCount," +