Skip to content

Commit 7935b9e

Browse files
committed
bugfix: fix logout state reference
1 parent eda183b commit 7935b9e

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
@@ -341,7 +341,7 @@ protected function lookupUserData(string $user): ?array
341341
public function logout(array &$state): void
342342
{
343343
// get the source that was used to authenticate
344-
$authId = $state['LogoutState']['negotiate:backend'];
344+
$authId = $state['negotiate:backend'];
345345
Logger::debug('Negotiate - logout has the following authId: "' . $authId . '"');
346346

347347
if ($authId === null) {

0 commit comments

Comments
 (0)