Don't degrade an existing relationship when following again
This commit is contained in:
parent
235eab0d99
commit
b152fde9d1
|
@ -2462,7 +2462,7 @@ class Contact
|
|||
|
||||
if (DBA::isResult($contact)) {
|
||||
// update contact
|
||||
$new_relation = (($contact['rel'] == self::FOLLOWER) ? self::FRIEND : self::SHARING);
|
||||
$new_relation = (in_array($contact['rel'], [self::FOLLOWER, self::FRIEND]) ? self::FRIEND : self::SHARING);
|
||||
|
||||
$fields = ['rel' => $new_relation, 'subhub' => $subhub, 'readonly' => false];
|
||||
self::update($fields, ['id' => $contact['id']]);
|
||||
|
|
Loading…
Reference in New Issue
Block a user