Merge pull request #7923 from annando/issue-7418

Issue 7418: connections to forums should now work again
This commit is contained in:
Hypolite Petovan 2019-12-09 16:53:48 -05:00 committed by GitHub
commit 010a7b7576
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -2332,7 +2332,7 @@ class Contact extends BaseObject
$apcontact = APContact::getByURL($url, false);
if (isset($apcontact['manually-approve'])) {
$pending = (bool)$apcontact['manually-approve'];
}
}
}
if (in_array($protocol, [Protocol::MAIL, Protocol::DIASPORA, Protocol::ACTIVITYPUB])) {

View File

@ -41,7 +41,7 @@ class OnePoll
}
if ($force) {
Contact::updateFromProbe($contact_id, true);
Contact::updateFromProbe($contact_id, '', true);
}
$contact = DBA::selectFirst('contact', [], ['id' => $contact_id]);