diff options
Diffstat (limited to 'app/Models/Entry.php')
| -rw-r--r-- | app/Models/Entry.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/Models/Entry.php b/app/Models/Entry.php index feb094347..12cef68a5 100644 --- a/app/Models/Entry.php +++ b/app/Models/Entry.php @@ -652,6 +652,12 @@ class FreshRSS_Entry extends Minz_Model { } /** + * Some clients (tested with News+) would fail if sending too long item content + * @var int + */ + const API_MAX_COMPAT_CONTENT_LENGTH = 500000; + + /** * N.B.: To avoid expensive lookups, ensure to set `$entry->_feed($feed)` before calling this function. * N.B.: You might have to populate `$entry->_tags()` prior to calling this function. * @param string $mode Set to `'compat'` to use an alternative Unicode representation for problematic HTML special characters not decoded by some clients; @@ -690,6 +696,9 @@ class FreshRSS_Entry extends Minz_Model { if ($mode === 'compat') { $item['title'] = escapeToUnicodeAlternative($this->title(), false); unset($item['alternate'][0]['type']); + if (mb_strlen($this->content(), 'UTF-8') > self::API_MAX_COMPAT_CONTENT_LENGTH) { + $item['summary']['content'] = mb_strcut($this->content(), 0, self::API_MAX_COMPAT_CONTENT_LENGTH, 'UTF-8'); + } } elseif ($mode === 'freshrss') { $item['guid'] = $this->guid(); unset($item['summary']); |
