From bf73372d7fad1ac574a0bd0d75f90df9445d9f7e Mon Sep 17 00:00:00 2001 From: Dag Date: Sun, 2 Jul 2023 06:47:21 +0200 Subject: [PATCH] fix: dont be case-sensitive on env vars (#3475) --- lib/Configuration.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Configuration.php b/lib/Configuration.php index 2f677ae5..3013443b 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -130,6 +130,7 @@ final class Configuration // Recombine the key if it had multiple underscores $key = implode('_', array_slice($nameParts, 2)); + $key = strtolower($key); // Handle this specifically because it's an array if ($key === 'enabled_bridges') {