Fixed: A few issues with the new alternative titles feature. (#2008) (Fixes #1919, #1927 and #1917)

Added: Ability to force download movies that could not be mapped correctly. This also shares these mappings with other users, so everyone can profit :)
This commit is contained in:
Leonardo Galli
2017-08-27 16:42:11 +02:00
committed by GitHub
parent efe49ef3c4
commit 09d51dca0f
3 changed files with 5 additions and 10 deletions

View File

@@ -253,12 +253,6 @@ namespace NzbDrone.Core.Datastore
.Take(pagingSpec.PageSize).ToList();
pagingSpec.TotalRecords = GetPagedQuery(Query, pagingSpec).GetRowCount();
var queryStr = GetPagedQuery(Query, pagingSpec).BuildQuery();
var beforeQuery = Query.BuildQuery();
pagingSpec.SortKey = beforeQuery;
pagingSpec.SortKey = queryStr;
return pagingSpec;
}