mirror of
https://github.com/friendica/friendica
synced 2024-11-19 01:43:41 +00:00
Archive/unarchive the contacts
This commit is contained in:
parent
9caa8bae35
commit
4db3c79d04
1 changed files with 9 additions and 0 deletions
|
@ -1770,6 +1770,15 @@ class Contact extends BaseObject
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Archive or unarchive the contact. We only need to do this for the public contact.
|
||||||
|
// The archive/unarchive function will update the personal contacts by themselves.
|
||||||
|
$contact = DBA::selectFirst('contact', [], ['id' => $id]);
|
||||||
|
if (!empty($fields['success_update'])) {
|
||||||
|
self::unmarkForArchival($contact);
|
||||||
|
} elseif (!empty($fields['failure_update'])) {
|
||||||
|
self::markForArchival($contact);
|
||||||
|
}
|
||||||
|
|
||||||
$condition = ['self' => false, 'nurl' => Strings::normaliseLink($url),
|
$condition = ['self' => false, 'nurl' => Strings::normaliseLink($url),
|
||||||
'network' => [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS]];
|
'network' => [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS]];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue