fixed broken return value of getConfigValue

This commit is contained in:
2019-02-06 16:55:01 +01:00
parent b32b756da1
commit 479145af6f

View File

@ -123,7 +123,7 @@ public class ConfigService implements Serializable {
updateConfigValue(configKey, account, configValue);
}
return defaultValue;
return configValue;
}
@Lock(LockType.READ)