Fix uppercase country (#21021)

Signed-off-by: Leo Siepel <leosiepel@gmail.com>
This commit is contained in:
lsiepel
2026-06-21 14:22:48 +02:00
committed by GitHub
parent 8c4a1a6136
commit 97b8812de6
@@ -12,6 +12,8 @@
*/
package org.openhab.binding.lgthinq.internal;
import java.util.Locale;
import org.eclipse.jdt.annotation.NonNullByDefault;
/**
@@ -56,7 +58,7 @@ public class LGThinQBridgeConfiguration {
public String getCountry() {
if ("--".equals(country)) {
return manualCountry;
return manualCountry.toUpperCase(Locale.ROOT);
}
return country;
}