Skip to content

Commit 9835295

Browse files
committed
Merge #22 Acknowledge Logout with 200 OK Response V31
2 parents cf1ef24 + 9aa6231 commit 9835295

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
@@ -987,13 +987,13 @@ private function getBackchannelLogoutErrorResponse(
987987
array $throttleMetadata = [],
988988
?bool $throttle = null,
989989
): JSONResponse {
990-
$this->logger->debug('Backchannel logout error. ' . $error . ' ; ' . $description);
990+
$this->logger->debug('Backchannel logout error', ['error' => $error, 'description' => $description] + $throttleMetadata);
991991
return new JSONResponse(
992992
[
993993
'error' => $error,
994994
'error_description' => $description,
995995
],
996-
Http::STATUS_BAD_REQUEST,
996+
Http::STATUS_OK,
997997
);
998998
}
999999

0 commit comments

Comments
 (0)