Skip to content

Commit 0ba1dfb

Browse files
committed
Fix error caused by a value not being set.
1 parent 83281c4 commit 0ba1dfb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

solid/lib/BaseServerConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public function getClients() {
9696
$clients[] = [
9797
"clientId" => $matches[1],
9898
"clientName" => $clientRegistration['client_name'],
99-
"clientBlocked" => $clientRegistration['blocked']
99+
"clientBlocked" => $clientRegistration['blocked'] ?? false,
100100
];
101101
}
102102
}

0 commit comments

Comments
 (0)