Fix duplicate key prefixing

This commit is contained in:
Tim Turner 2017-01-22 16:59:53 -05:00
commit ec6b389d75

View file

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