1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2024-12-23 02:04:46 +02:00

[Web] catch all exceptions on ldap connect

This commit is contained in:
FreddleSpl0it 2024-02-23 08:12:06 +01:00
parent 9561526f33
commit 916d0fd46a
No known key found for this signature in database
GPG Key ID: 00E14E7634F4BEC5

View File

@ -2395,7 +2395,7 @@ function identity_provider($_action, $_data = null, $_extra = null) {
]);
try {
$provider->connect();
} catch (TypeError $e) {
} catch (Throwable $e) {
$provider = null;
}
}