diff options
author | Razzeee <razzeee@gmail.com> | 2016-02-08 07:54:28 +0100 |
---|---|---|
committer | Razzeee <razzeee@gmail.com> | 2016-02-08 07:54:28 +0100 |
commit | 57b3bd02a5256f2a97821c1501ccda0afb3b24d4 (patch) | |
tree | 3b955bfd4f51635fc377e7c4d276e5efad8aab02 | |
parent | fdb85383efd860a07b67a6b4c5d021e69c562b0e (diff) | |
parent | e31277442bf624d3ac2480e9a457cd5fb23bb7e5 (diff) |
Merge pull request #9087 from Razzeee/fix-inprogress-tvshow
Fixes inprogress tvshows node being limited to 25 items by mistake
-rw-r--r-- | xbmc/video/VideoDatabase.cpp | 1 |
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); } |