1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Fix duplicate key prefixing

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

View File

@ -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;
}