Rever item reshare handling, fixed database

This commit is contained in:
Michael 2021-02-15 10:29:58 +00:00
parent 2b76ff61ad
commit 2b17e36a67
2 changed files with 2 additions and 2 deletions

View file

@ -1146,7 +1146,7 @@ class Item
}
$cid = Contact::getIdForURL($author['url'], $item['uid']);
if (empty($cid) || (!Contact::isSharing($cid, $item['uid'] && in_array($author['network'], Protocol::FEDERATED)))) {
if (empty($cid) || !Contact::isSharing($cid, $item['uid'])) {
Logger::info('The resharer is not a following contact: quit', ['resharer' => $author['url'], 'uid' => $item['uid'], 'cid' => $cid]);
return;
}