feat: add sanity check for required curl module (#4495)

This commit is contained in:
Dag 2025-03-26 00:07:33 +01:00 committed by GitHub
parent 9d6aa5ee38
commit 4d8a46d46e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,6 +5,11 @@ if (version_compare(\PHP_VERSION, '7.4.0') === -1) {
exit("RSS-Bridge requires minimum PHP version 7.4\n");
}
if (!extension_loaded('curl')) {
http_response_code(500);
exit("RSS-Bridge requires curl (apt install php-curl)\n");
}
require __DIR__ . '/lib/bootstrap.php';
require __DIR__ . '/lib/config.php';