From 7aa7292d6a7752442d8ca6ba5cc7115d5179b6e7 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 7 Jan 2026 16:58:20 +0100 Subject: [PATCH] fix: fix appconfig usage Signed-off-by: Robin Appelman --- lib/DavPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/DavPlugin.php b/lib/DavPlugin.php index d971c14be..06d29247f 100644 --- a/lib/DavPlugin.php +++ b/lib/DavPlugin.php @@ -36,7 +36,7 @@ public function initialize(Server $server): void { public function beforeMethod(RequestInterface $request, ResponseInterface $response): void { if ( - $this->config->getValueString('type', 'unset') === 'environment-variable' + $this->config->getValueString('user_saml', 'type', 'unset') === 'environment-variable' && !$this->session->exists('user_saml.samlUserData') ) { $uidMapping = $this->samlSettings->get(1)['general-uid_mapping'];