mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-09 16:38:50 +00:00
fix: dont be case-sensitive on env vars (#3475)
This commit is contained in:
parent
748fc9fd65
commit
bf73372d7f
@ -130,6 +130,7 @@ final class Configuration
|
|||||||
|
|
||||||
// Recombine the key if it had multiple underscores
|
// Recombine the key if it had multiple underscores
|
||||||
$key = implode('_', array_slice($nameParts, 2));
|
$key = implode('_', array_slice($nameParts, 2));
|
||||||
|
$key = strtolower($key);
|
||||||
|
|
||||||
// Handle this specifically because it's an array
|
// Handle this specifically because it's an array
|
||||||
if ($key === 'enabled_bridges') {
|
if ($key === 'enabled_bridges') {
|
||||||
|
Loading…
Reference in New Issue
Block a user