Merge pull request #10896 from annando/relationship

Don't degrade an existing relationship when following again
pull/10898/head
Hypolite Petovan 2021-10-19 07:29:17 -04:00 zatwierdzone przez GitHub
commit 42be3c1224
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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