diff --git a/src/Protocol/Feed.php b/src/Protocol/Feed.php index 821de8c335..d3d0d5ef46 100644 --- a/src/Protocol/Feed.php +++ b/src/Protocol/Feed.php @@ -614,7 +614,8 @@ class Feed $notify = PRIORITY_MEDIUM; } - if (!Post\Delayed::exists($item["uri"])) { + $condition = ['uid' => $item['uid'], 'uri' => $item['uri'], 'network' => Protocol::FEED]; + if (!Item::exists($condition) && !Post\Delayed::exists($item["uri"])) { $postings[] = ['item' => $item, 'notify' => $notify, 'taglist' => $taglist, 'attachments' => $attachments]; } else {