From 47a429c773da00a8ac51669f995bda2eb89b73d6 Mon Sep 17 00:00:00 2001 From: Louis Chmn Date: Fri, 14 Aug 2026 18:15:59 +0200 Subject: [PATCH] fix: Do not override default HTTP Client options Currently, we override two options: 1. `verify`, which prevent using custom CA certificates 2. `allow_local_address`, which do not respect the instance wide setting Signed-off-by: Louis Chmn --- lib/Lookup.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/Lookup.php b/lib/Lookup.php index 7ebd08f..55913a3 100644 --- a/lib/Lookup.php +++ b/lib/Lookup.php @@ -203,8 +203,6 @@ public function configureClient(array $options): array { [ 'timeout' => 10, 'connect_timeout' => 3, - 'nextcloud' => ['allow_local_address' => true], - 'verify' => !$this->config->getSystemValueBool('gss.selfsigned.allow', false), ] ); }