Add the uri-id if missing

This commit is contained in:
Michael 2022-09-24 21:53:27 +00:00
parent 08ead52433
commit bca9069b22
1 changed files with 4 additions and 0 deletions

View File

@ -1153,6 +1153,10 @@ class PostUpdate
while ($contact = DBA::fetch($contacts)) {
$id = $contact['id'];
if (is_null($contact['uri-id'])) {
$contact['uri-id'] = ItemURI::getIdByURI($contact['url']);
DBA::update('contact', ['uri-id' => $contact['uri-id']], ['id' => $contact['id']]);
}
Contact::setAccountUser($contact['id'], $contact['uid'], $contact['uri-id'], $contact['url']);
++$rows;
}