From 91a7217fb8af2469f53b4b0e84849d9abf7029ff Mon Sep 17 00:00:00 2001
From: Michael <heluecht@pirati.ca>
Date: Sun, 7 May 2023 06:13:28 +0000
Subject: [PATCH] Fix: Feeds had been imported with the wrong body

---
 src/Protocol/Feed.php | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/Protocol/Feed.php b/src/Protocol/Feed.php
index 8c6b4c28d1..6d6d3f6762 100644
--- a/src/Protocol/Feed.php
+++ b/src/Protocol/Feed.php
@@ -309,6 +309,7 @@ class Feed
 			$entry = $entries->item($i);
 
 			$item = array_merge($header, $author);
+			$body = '';
 
 			$alternate = XML::getFirstAttributes($xpath, $atomns . ":link[@rel='alternate']", $entry);
 			if (!is_object($alternate)) {
-- 
2.39.5