diff options
author | montellese <montellese@xbmc.org> | 2011-03-01 18:11:57 +0100 |
---|---|---|
committer | montellese <montellese@xbmc.org> | 2011-03-01 18:11:57 +0100 |
commit | 8cb88a097fe0d655f480276b11972c7250a57319 (patch) | |
tree | b154ee1780d23b38377a208e46350d68cf1b6bf8 | |
parent | b9aef66beb0692d6f6c71e9fc08164bc3fa06034 (diff) |
JSONRPC: VideoLibrary.GetMovies returns (all) movies only and no moviesets
-rw-r--r-- | xbmc/interfaces/json-rpc/VideoLibrary.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/interfaces/json-rpc/VideoLibrary.cpp b/xbmc/interfaces/json-rpc/VideoLibrary.cpp index 3c6d14ea4c..57e81526b5 100644 --- a/xbmc/interfaces/json-rpc/VideoLibrary.cpp +++ b/xbmc/interfaces/json-rpc/VideoLibrary.cpp @@ -40,7 +40,7 @@ JSON_STATUS CVideoLibrary::GetMovies(const CStdString &method, ITransportLayer * // int genreID = parameterObject.get("genreid", -1).asInt(); CFileItemList items; - if (videodatabase.GetMoviesNav("videodb://", items)) + if (videodatabase.GetMoviesByWhere("videodb://", "", "", items)) HandleFileItemList("movieid", true, "movies", items, parameterObject, result); videodatabase.Close(); |