Merge pull request #9722 from annando/fix-fatal

Fix fatal
This commit is contained in:
Hypolite Petovan
2020-12-29 21:29:35 -05:00
committed by GitHub

View File

@@ -67,6 +67,10 @@ class Account extends BaseFactory
$userContact = [];
}
if (empty($publicContact)) {
throw new HTTPException\NotFoundException('Contact ' . $contactId . ' not found');
}
$apcontact = APContact::getByURL($publicContact['url'], false);
$self_contact = Contact::selectFirst(['uid'], ['nurl' => $publicContact['nurl'], 'self' => true]);