mirror of
https://github.com/Radarr/Radarr
synced 2025-01-01 12:54:21 +00:00
Fixes issue where quality settings wont save due to no pagesize.
This commit is contained in:
parent
f36db9f77b
commit
5bd008f468
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue