diff --git a/src/Protocol/Feed.php b/src/Protocol/Feed.php index f414a3ca8a..103f7a9f08 100644 --- a/src/Protocol/Feed.php +++ b/src/Protocol/Feed.php @@ -563,7 +563,7 @@ class Feed $data_text = strip_tags(trim($data['text'] ?? '')); $item_body = strip_tags(trim($item['body'] ?? '')); - if (!empty($data['text']) && (($data_text == $item_body) || strstr($item_body, $data_text))) { + if (($data_text == $item_body) || strstr($item_body, $data_text)) { $data['text'] = ''; }