aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKolja Lampe <razzeee@gmail.com>2016-02-07 23:08:53 +0100
committerKolja Lampe <razzeee@gmail.com>2016-02-07 23:08:53 +0100
commite31277442bf624d3ac2480e9a457cd5fb23bb7e5 (patch)
tree3b955bfd4f51635fc377e7c4d276e5efad8aab02
parentfdb85383efd860a07b67a6b4c5d021e69c562b0e (diff)
Fixes inprogress tvshows node being limited to 25 items by mistake
-rw-r--r--xbmc/video/VideoDatabase.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/xbmc/video/VideoDatabase.cpp b/xbmc/video/VideoDatabase.cpp
index deea304953..ea42ead3ed 100644
--- a/xbmc/video/VideoDatabase.cpp
+++ b/xbmc/video/VideoDatabase.cpp
@@ -6748,7 +6748,6 @@ bool CVideoDatabase::GetInProgressTvShowsNav(const std::string& strBaseDir, CFil
{
Filter filter;
filter.order = PrepareSQL("c%02d", VIDEODB_ID_TV_TITLE);
- filter.limit = PrepareSQL("%u", limit ? limit : g_advancedSettings.m_iVideoLibraryRecentlyAddedItems);
filter.where = "watchedCount != 0 AND totalCount != watchedCount";
return GetTvShowsByWhere(strBaseDir, filter, items, SortDescription(), getDetails);
}