diff options
author | Mario <mario@mariovavti.com> | 2022-06-03 08:51:54 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-06-03 08:51:54 +0000 |
commit | 5e112b395ddb80b72891361b259b4d3fafa7efc2 (patch) | |
tree | 89a3b19ce22cea78d09b76b88ab20a1972ea63bd /Zotlabs/Widget/Messages.php | |
parent | d1a8e7813a5cd695f13339ab0c9cc19daf3f1d94 (diff) | |
download | volse-hubzilla-5e112b395ddb80b72891361b259b4d3fafa7efc2.tar.gz volse-hubzilla-5e112b395ddb80b72891361b259b4d3fafa7efc2.tar.bz2 volse-hubzilla-5e112b395ddb80b72891361b259b4d3fafa7efc2.zip |
oembed: implement a max oembed size which defaults to 1MB and do not try to oembed text previews
Diffstat (limited to 'Zotlabs/Widget/Messages.php')
-rw-r--r-- | Zotlabs/Widget/Messages.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Widget/Messages.php b/Zotlabs/Widget/Messages.php index d045ae85b..3d9ed8955 100644 --- a/Zotlabs/Widget/Messages.php +++ b/Zotlabs/Widget/Messages.php @@ -113,7 +113,7 @@ class Messages { } if (!$summary) { - $summary = html2plain(bbcode($item['body'], ['drop_media' => true]), 75, true); + $summary = html2plain(bbcode($item['body'], ['drop_media' => true, 'tryoembed' => false]), 75, true); if ($summary) { $summary = htmlentities($summary, ENT_QUOTES, 'UTF-8', false); } |