Skip to content

Commit 77dac60

Browse files
committed
Merge #22 Acknowledge Logout with 200 OK Response V31
2 parents 07b92e5 + 9aa6231 commit 77dac60

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/Controller/LoginController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -983,13 +983,13 @@ private function getBackchannelLogoutErrorResponse(
983983
array $throttleMetadata = [],
984984
?bool $throttle = null,
985985
): JSONResponse {
986-
$this->logger->debug('Backchannel logout error. ' . $error . ' ; ' . $description);
986+
$this->logger->debug('Backchannel logout error', ['error' => $error, 'description' => $description] + $throttleMetadata);
987987
return new JSONResponse(
988988
[
989989
'error' => $error,
990990
'error_description' => $description,
991991
],
992-
Http::STATUS_BAD_REQUEST,
992+
Http::STATUS_OK,
993993
);
994994
}
995995

0 commit comments

Comments
 (0)