Fixing the Accepting of contact requests

This commit is contained in:
Michael 2019-01-09 22:30:26 +00:00
parent 6ae6a8a983
commit defc89fa9a
1 changed files with 5 additions and 1 deletions

View File

@ -370,6 +370,7 @@ class Processor
$cid = Contact::getIdForURL($activity['actor'], $uid);
if (!empty($cid)) {
self::switchContact($cid);
DBA::update('contact', ['hub-verify' => $activity['id']], ['id' => $cid]);
$contact = DBA::selectFirst('contact', [], ['id' => $cid, 'network' => Protocol::NATIVE_SUPPORT]);
} else {
$contact = false;
@ -387,7 +388,10 @@ class Processor
return;
}
DBA::update('contact', ['hub-verify' => $activity['id']], ['id' => $cid]);
if (empty($contact)) {
DBA::update('contact', ['hub-verify' => $activity['id']], ['id' => $cid]);
}
Logger::log('Follow user ' . $uid . ' from contact ' . $cid . ' with id ' . $activity['id']);
}