fix defaultValue on getLocalSetting and getSyncedSetting

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/21833/head
Michael Telatynski 2017-04-25 22:01:35 +01:00
parent de89c1f710
commit cc53825b06
1 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ module.exports = {
getSyncedSetting: function(type, defaultValue = null) {
const settings = this.getSyncedSettings();
return settings.hasOwnProperty(type) ? settings[type] : null;
return settings.hasOwnProperty(type) ? settings[type] : defaultValue;
},
setSyncedSetting: function(type, value) {
@ -156,7 +156,7 @@ module.exports = {
getLocalSetting: function(type, defaultValue = null) {
const settings = this.getLocalSettings();
return settings.hasOwnProperty(type) ? settings[type] : null;
return settings.hasOwnProperty(type) ? settings[type] : defaultValue;
},
setLocalSetting: function(type, value) {