Fix fatal error

This commit is contained in:
Michael 2020-12-29 22:14:54 +00:00
parent cf65725373
commit d666501ee0
1 changed files with 4 additions and 0 deletions

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]);