Use Contact::isFollower instead

This commit is contained in:
Hypolite Petovan 2018-12-13 11:53:15 -05:00
parent 096093766a
commit 7c11194a2c
1 changed files with 1 additions and 7 deletions

View File

@ -338,13 +338,7 @@ class Profile
}
// Is the remote user already connected to that user?
if ($connect && remote_user()
&& DBA::exists('contact', [
'uid' => $profile['uid'],
'nurl' => Strings::normaliseLink(self::getMyURL()),
'rel' => [Contact::SHARING, Contact::FRIEND]
])
) {
if ($connect && Contact::isFollower(remote_user(), $profile['uid'])) {
$connect = false;
}