Fix duplicate key prefixing

Tim Turner 7 years ago
parent f38430d632
commit ec6b389d75

@ -55,7 +55,7 @@ module.exports = {
var storeKey = this.ConfigNamespace + key;
console.log('Config: [{0}] => [{1}]'.format(storeKey, value));
if (this.getValue(storeKey) === value.toString()) {
if (this.getValue(key) === value.toString()) {
return;
}

Loading…
Cancel
Save