mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07:00
Fix duplicate key prefixing
This commit is contained in:
parent
f38430d632
commit
ec6b389d75
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue