From 9b424a8fd89975c54a5bb458cad73d8dc96afa70 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sun, 19 Mar 2023 17:11:27 +0100 Subject: FeverAPI fix enclosures (#5214) Fix regression: provide enclosures as part of HTML content body in FeverAPI #fix https://github.com/FreshRSS/FreshRSS/issues/5209 --- app/Models/Entry.php | 1 + 1 file changed, 1 insertion(+) (limited to 'app/Models') diff --git a/app/Models/Entry.php b/app/Models/Entry.php index 81ece1ce4..4a0f12c94 100644 --- a/app/Models/Entry.php +++ b/app/Models/Entry.php @@ -187,6 +187,7 @@ HTML; $thumbnails = $enclosure['thumbnails'] ?? []; $etitle = $enclosure['title'] ?? ''; + $content .= "\n"; $content .= '
'; foreach ($thumbnails as $thumbnail) { -- cgit v1.2.3