mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-03-14 20:21:14 +03:00
fix: dont be case-sensitive on env vars (#3475)
This commit is contained in:
parent
748fc9fd65
commit
bf73372d7f
1 changed files with 1 additions and 0 deletions
|
@ -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') {
|
||||
|
|
Loading…
Add table
Reference in a new issue