Fixes issue where quality settings wont save due to no pagesize.

This commit is contained in:
Leonardo Galli 2017-03-06 22:09:00 +01:00
parent f36db9f77b
commit 5bd008f468
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ module.exports = SettingsModelBase.extend({
origInit : SettingsModelBase.prototype.initialize,
initialize : function() {
this.set("pageSize", Config.getValue("pageSize"));
this.set("pageSize", Config.getValue("pageSize", 1000));
this.origInit.call(this);
},