1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-07-10 11:36:24 +02:00

fix: typo in previous commit (#3934)

This commit is contained in:
Dag
2024-01-26 21:58:24 +01:00
committed by GitHub
parent 6938f06125
commit c3a968193e

View File

@ -43,7 +43,7 @@ spl_autoload_register(function ($className) {
}); });
$customConfig = []; $customConfig = [];
if (file_exists(__DIR__ . '/config.ini.php')) { if (file_exists(__DIR__ . '/../config.ini.php')) {
$customConfig = parse_ini_file(__DIR__ . '/config.ini.php', true, INI_SCANNER_TYPED); $customConfig = parse_ini_file(__DIR__ . '/../config.ini.php', true, INI_SCANNER_TYPED);
} }
Configuration::loadConfiguration($customConfig, getenv()); Configuration::loadConfiguration($customConfig, getenv());