Avoid to do the follow stuff for the public user

pull/5827/head
Michael 2018-10-05 20:10:10 +00:00
rodzic 5ed1c12349
commit 5d7968bdf3
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -382,7 +382,7 @@ class Receiver
Contact::updateAvatar($photo, $uid, $cid);
// Send a new follow request to be sure that the connection still exists
if (DBA::exists('contact', ['id' => $cid, 'rel' => [Contact::SHARING, Contact::FRIEND]])) {
if (($uid != 0) && DBA::exists('contact', ['id' => $cid, 'rel' => [Contact::SHARING, Contact::FRIEND]])) {
ActivityPub\Transmitter::sendActivity('Follow', $profile['url'], $uid);
logger('Send a new follow request to ' . $profile['url'] . ' for user ' . $uid, LOGGER_DEBUG);
}