[XBMC] no count restiction on ls command

This commit is contained in:
Bezleputh 2014-09-02 18:11:26 +02:00
commit 5a932bdf30
2 changed files with 3 additions and 2 deletions

View file

@ -64,7 +64,7 @@ class Videoobmc(Weboobmc):
return self.create_video_from_json(_video[0])
def ls(self, backend, path=''):
options = {'-b': backend}
options = {'-b': backend, '-n': 50}
result = self._json_call_weboob('videoob', 'ls', options=options, argument=path)
return self.separate_collections_and_videos(result)