1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

Fix duplicate key prefixing

This commit is contained in:
Tim Turner
2017-01-22 16:59:53 -05:00
parent f38430d632
commit ec6b389d75
+1 -1
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;
}