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 2ef04bf + f44576b commit 5305e6aCopy full SHA for 5305e6a
1 file changed
apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php
@@ -158,9 +158,13 @@ protected function getUserAccountData(IUser $user): array {
158
$account = $this->accountManager->getAccount($user);
159
160
$publicData = [];
161
- foreach ($account->getProperties() as $property) {
+ foreach ($account->getAllProperties() as $property) {
162
if ($property->getScope() === IAccountManager::SCOPE_PUBLISHED) {
163
- $publicData[$property->getName()] = $property->getValue();
+ $publicData[$property->getName()] = [
164
+ 'value' => $property->getValue(),
165
+ 'verified' => $property->getVerified(),
166
+ 'signature' => $property->getVerificationData(),
167
+ ];
168
}
169
170
0 commit comments