From 2b75153148ad2e3a8ebffdc3a4e9e810a72458be Mon Sep 17 00:00:00 2001 From: Ruud Date: Fri, 17 May 2013 12:11:53 +0200 Subject: [PATCH] Don't limit snatched & wanted fixes #1747 --- couchpotato/core/plugins/movie/static/list.js | 2 +- couchpotato/static/scripts/page/home.js | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/couchpotato/core/plugins/movie/static/list.js b/couchpotato/core/plugins/movie/static/list.js index aa29e923..047ac870 100644 --- a/couchpotato/core/plugins/movie/static/list.js +++ b/couchpotato/core/plugins/movie/static/list.js @@ -504,7 +504,7 @@ var MovieList = new Class({ Api.request(self.options.api_call || 'movie.list', { 'data': Object.merge({ 'status': self.options.status, - 'limit_offset': self.options.limit + ',' + self.offset + 'limit_offset': self.options.limit ? self.options.limit + ',' + self.offset : null }, self.filter), 'onSuccess': function(json){ diff --git a/couchpotato/static/scripts/page/home.js b/couchpotato/static/scripts/page/home.js index bb4e5e9f..04fc7a8e 100644 --- a/couchpotato/static/scripts/page/home.js +++ b/couchpotato/static/scripts/page/home.js @@ -39,7 +39,8 @@ Page.Home = new Class({ ), 'filter': { 'release_status': 'snatched,available' - } + }, + 'limit': null }); // Coming Soon