Fix string comparison in TypeUtils.

Original Pull Request #3177
Closes #3176
Signed-off-by: Peter-Josef Meisch <pj.meisch@sothawo.com>
(cherry picked from commit 0e1a97a27afbd793c61865e75824394e0942388a)
(cherry picked from commit 00c99852fabf9eb31dc9a04a9f4314cc89eb978c)
This commit is contained in:
Peter-Josef Meisch 2025-10-03 10:48:25 +02:00
parent 0f7dc4f54d
commit 21306745b3
No known key found for this signature in database
GPG Key ID: DE108246970C7708

View File

@ -436,7 +436,7 @@ final class TypeUtils {
// values taken from the RHLC implementation
if (value == null) {
return -2;
} else if ("all".equals(value.toUpperCase())) {
} else if ("all".equals(value.toLowerCase())) {
return -1;
} else {
try {