Skip to content

Commit 3782854

Browse files
committed
bugfix: fix logout state reference
1 parent 41afe7e commit 3782854

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Auth/Source/Negotiate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ protected function lookupUserData(string $user): ?array
342342
public function logout(array &$state): void
343343
{
344344
// get the source that was used to authenticate
345-
$authId = $state['LogoutState']['negotiate:backend'];
345+
$authId = $state['negotiate:backend'];
346346
Logger::debug('Negotiate - logout has the following authId: "' . $authId . '"');
347347

348348
if ($authId === null) {

0 commit comments

Comments
 (0)