Skip to content

Commit 24e75e9

Browse files
committed
Merge #22 Acknowledge Logout with 200 OK Response V31
2 parents fe5d3d6 + 9aa6231 commit 24e75e9

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
@@ -916,13 +916,13 @@ private function getBackchannelLogoutErrorResponse(
916916
array $throttleMetadata = [],
917917
?bool $throttle = null,
918918
): JSONResponse {
919-
$this->logger->debug('Backchannel logout error. ' . $error . ' ; ' . $description);
919+
$this->logger->debug('Backchannel logout error', ['error' => $error, 'description' => $description] + $throttleMetadata);
920920
return new JSONResponse(
921921
[
922922
'error' => $error,
923923
'error_description' => $description,
924924
],
925-
Http::STATUS_BAD_REQUEST,
925+
Http::STATUS_OK,
926926
);
927927
}
928928

0 commit comments

Comments
 (0)