mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:02:58 +00:00
Respect "manually improve" during contact request
This commit is contained in:
parent
bc18cde412
commit
e27ebaee48
1 changed files with 10 additions and 1 deletions
|
@ -2298,7 +2298,16 @@ class Contact extends BaseObject
|
|||
|
||||
$hidden = (($protocol === Protocol::MAIL) ? 1 : 0);
|
||||
|
||||
$pending = in_array($protocol, [Protocol::ACTIVITYPUB]);
|
||||
if ($protocol == Protocol::ACTIVITYPUB) {
|
||||
$apcontact = APContact::getByURL($url, false);
|
||||
if (isset($apcontact['manually-approve'])) {
|
||||
$pending = (bool)$apcontact['manually-approve'];
|
||||
} else {
|
||||
$pending = true;
|
||||
}
|
||||
} else {
|
||||
$pending = false;
|
||||
}
|
||||
|
||||
if (in_array($protocol, [Protocol::MAIL, Protocol::DIASPORA, Protocol::ACTIVITYPUB])) {
|
||||
$writeable = 1;
|
||||
|
|
Loading…
Reference in a new issue