We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents defbdf2 + 10a87bb commit 5a27942Copy full SHA for 5a27942
1 file changed
apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php
@@ -190,9 +190,13 @@ protected function getUserAccountData(IUser $user): array {
190
$account = $this->accountManager->getAccount($user);
191
192
$publicData = [];
193
- foreach ($account->getProperties() as $property) {
+ foreach ($account->getAllProperties() as $property) {
194
if ($property->getScope() === IAccountManager::SCOPE_PUBLISHED) {
195
- $publicData[$property->getName()] = $property->getValue();
+ $publicData[$property->getName()] = [
196
+ 'value' => $property->getValue(),
197
+ 'verified' => $property->getVerified(),
198
+ 'signature' => $property->getVerificationData(),
199
+ ];
200
}
201
202
0 commit comments