We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9de3f3a commit 7d67404Copy full SHA for 7d67404
1 file changed
solid/lib/Controller/ServerController.php
@@ -205,7 +205,7 @@ public function authorize() {
205
}
206
207
$clientRegistration = $this->config->getClientRegistration($clientId);
208
- if ($clientRegistration['blocked'] === true) {
+ if (isset($clientRegistration['blocked']) && ($clientRegistration['blocked'] === true)) {
209
$result = new JSONResponse('Unauthorized client');
210
$result->setStatus(403);
211
return $result;
0 commit comments