Browse Source

Don't limit snatched & wanted

fixes #1747
pull/1757/head
Ruud 12 years ago
parent
commit
2b75153148
  1. 2
      couchpotato/core/plugins/movie/static/list.js
  2. 3
      couchpotato/static/scripts/page/home.js

2
couchpotato/core/plugins/movie/static/list.js

@ -504,7 +504,7 @@ var MovieList = new Class({
Api.request(self.options.api_call || 'movie.list', { Api.request(self.options.api_call || 'movie.list', {
'data': Object.merge({ 'data': Object.merge({
'status': self.options.status, 'status': self.options.status,
'limit_offset': self.options.limit + ',' + self.offset 'limit_offset': self.options.limit ? self.options.limit + ',' + self.offset : null
}, self.filter), }, self.filter),
'onSuccess': function(json){ 'onSuccess': function(json){

3
couchpotato/static/scripts/page/home.js

@ -39,7 +39,8 @@ Page.Home = new Class({
), ),
'filter': { 'filter': {
'release_status': 'snatched,available' 'release_status': 'snatched,available'
} },
'limit': null
}); });
// Coming Soon // Coming Soon

Loading…
Cancel
Save