From 425440ec246c6caed22bf99d6d6763c6daf50e3d Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 2 Dec 2020 00:29:57 +0000 Subject: [PATCH] The network doesn't matter --- src/Protocol/Feed.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Protocol/Feed.php b/src/Protocol/Feed.php index d3d0d5ef46..48677a91b7 100644 --- a/src/Protocol/Feed.php +++ b/src/Protocol/Feed.php @@ -614,7 +614,7 @@ class Feed $notify = PRIORITY_MEDIUM; } - $condition = ['uid' => $item['uid'], 'uri' => $item['uri'], 'network' => Protocol::FEED]; + $condition = ['uid' => $item['uid'], 'uri' => $item['uri']]; if (!Item::exists($condition) && !Post\Delayed::exists($item["uri"])) { $postings[] = ['item' => $item, 'notify' => $notify, 'taglist' => $taglist, 'attachments' => $attachments];