diff options
| author | 2023-03-19 17:11:27 +0100 | |
|---|---|---|
| committer | 2023-03-19 17:11:27 +0100 | |
| commit | 9b424a8fd89975c54a5bb458cad73d8dc96afa70 (patch) | |
| tree | b342e1125573d3dcd648ccc6e25d003584358fd1 /app/Models/Entry.php | |
| parent | 73b4fd74a4dd1259e2cefb06b41e86658f98ee5f (diff) | |
FeverAPI fix enclosures (#5214)
Fix regression: provide enclosures as part of HTML content body in FeverAPI
#fix https://github.com/FreshRSS/FreshRSS/issues/5209
Diffstat (limited to 'app/Models/Entry.php')
| -rw-r--r-- | app/Models/Entry.php | 1 |
1 files changed, 1 insertions, 0 deletions
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 .= '<figure class="enclosure">'; foreach ($thumbnails as $thumbnail) { |
