Don't limit snatched & wanted

fixes #1747
This commit is contained in:
Ruud
2013-05-17 12:11:53 +02:00
parent c170615fb3
commit 2b75153148
2 changed files with 3 additions and 2 deletions
@@ -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){
+2 -1
View File
@@ -39,7 +39,8 @@ Page.Home = new Class({
),
'filter': {
'release_status': 'snatched,available'
}
},
'limit': null
});
// Coming Soon