From 6171188180fde0d7e9eab706e45785bccc3b7d01 Mon Sep 17 00:00:00 2001 From: Mark Kaulertz <33390109+m0ark@users.noreply.github.com> Date: Thu, 24 Apr 2025 09:06:17 +0200 Subject: [PATCH] Update Negotiate.php - fix logout state reference --- src/Auth/Source/Negotiate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Auth/Source/Negotiate.php b/src/Auth/Source/Negotiate.php index 203bf4e..42a3dec 100644 --- a/src/Auth/Source/Negotiate.php +++ b/src/Auth/Source/Negotiate.php @@ -423,7 +423,7 @@ protected function lookupUserData(string $uid): ?array public function logout(array &$state): void { // get the source that was used to authenticate - $authId = $state['LogoutState']['negotiate:backend']; + $authId = $state['negotiate:backend']; Logger::debug('Negotiate - logout has the following authId: "' . $authId . '"'); if ($authId === null) {