From 479145af6fb9d510af1866742821096fa8c60e90 Mon Sep 17 00:00:00 2001 From: jomu Date: Wed, 6 Feb 2019 16:55:01 +0100 Subject: [PATCH] fixed broken return value of getConfigValue --- .../shared/account/business/config/boundary/ConfigService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account/src/main/java/de/muehlencord/shared/account/business/config/boundary/ConfigService.java b/account/src/main/java/de/muehlencord/shared/account/business/config/boundary/ConfigService.java index e4ee441..015bf45 100644 --- a/account/src/main/java/de/muehlencord/shared/account/business/config/boundary/ConfigService.java +++ b/account/src/main/java/de/muehlencord/shared/account/business/config/boundary/ConfigService.java @@ -123,7 +123,7 @@ public class ConfigService implements Serializable { updateConfigValue(configKey, account, configValue); } - return defaultValue; + return configValue; } @Lock(LockType.READ)