Jarvis beta 2 json
#1
Hi i am not sure if this is the correct place to report bugs so sorry if it is not.

VideoLibrary.GetTVShows is returning the wrong amount of results it is claiming 58 but i am only getting 38.

This is what i am asking for...
Code:
I    q = {
         "jsonrpc": "2.0",
         "method": "VideoLibrary.GetTVShows",
         "params":{
                   "limits": {
                              "start" : 0,
                              "end": 1000 },
                   "properties": [
                                  "title",
                                  "thumbnail",
                                  "file",
                                  "imdbnumber",
                                  "playcount",
                                  "season",
                                  "episode",
                                  "lastplayed",
                                  ],
                   "sort": {
                            "order": "ascending",
                            "method": "label" }
                   },
         "id": "libTvShows"}


and this is what i am getting back...
Code:
{
  u'jsonrpc': u'2.0',
  u'id': u'libTvShows',
  u'result': {
    u'limits': {
      u'start': 0,
      u'total': 58,
      u'end': 58
    },

full response http://pastebin.com/hUvDngLp
Reply

Logout Mark Read Team Forum Stats Members Help
Jarvis beta 2 json0