Skip to content

Commit 65487fa

Browse files
committed
Merge #22 Acknowledge Logout with 200 OK Response V31
2 parents 62f79e2 + 9aa6231 commit 65487fa

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
@@ -912,13 +912,13 @@ private function getBackchannelLogoutErrorResponse(
912912
array $throttleMetadata = [],
913913
?bool $throttle = null,
914914
): JSONResponse {
915-
$this->logger->debug('Backchannel logout error. ' . $error . ' ; ' . $description);
915+
$this->logger->debug('Backchannel logout error', ['error' => $error, 'description' => $description] + $throttleMetadata);
916916
return new JSONResponse(
917917
[
918918
'error' => $error,
919919
'error_description' => $description,
920920
],
921-
Http::STATUS_BAD_REQUEST,
921+
Http::STATUS_OK,
922922
);
923923
}
924924

0 commit comments

Comments
 (0)