diff options
| author | 2023-03-19 17:11:27 +0100 | |
|---|---|---|
| committer | 2023-03-19 17:11:27 +0100 | |
| commit | 9b424a8fd89975c54a5bb458cad73d8dc96afa70 (patch) | |
| tree | b342e1125573d3dcd648ccc6e25d003584358fd1 /p/api | |
| 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 'p/api')
| -rw-r--r-- | p/api/fever.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p/api/fever.php b/p/api/fever.php index dfe9572cd..c83b28da3 100644 --- a/p/api/fever.php +++ b/p/api/fever.php @@ -86,7 +86,7 @@ final class FeverDAO extends Minz_ModelPdo $sql = 'SELECT id, guid, title, author, ' . ($entryDAO::isCompressed() ? 'UNCOMPRESS(content_bin) AS content' : 'content') - . ', link, date, is_read, is_favorite, id_feed ' + . ', link, date, is_read, is_favorite, id_feed, attributes ' . 'FROM `_entry` WHERE'; if (!empty($entry_ids)) { |
