aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Notes.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-02-17 10:18:01 +0000
committerMario <mario@mariovavti.com>2023-02-17 10:18:01 +0000
commitee8fc701a61996bc5d93bbac942c0804e2c35950 (patch)
tree06694e25e89bcbcaa4cbdc6b7dea9116a4c3ee78 /Zotlabs/Module/Notes.php
parent62a363debccd7027a02b520614a53e523df15d1b (diff)
downloadvolse-hubzilla-ee8fc701a61996bc5d93bbac942c0804e2c35950.tar.gz
volse-hubzilla-ee8fc701a61996bc5d93bbac942c0804e2c35950.tar.bz2
volse-hubzilla-ee8fc701a61996bc5d93bbac942c0804e2c35950.zip
do not try to oembed in notes
Diffstat (limited to 'Zotlabs/Module/Notes.php')
-rw-r--r--Zotlabs/Module/Notes.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Notes.php b/Zotlabs/Module/Notes.php
index 57b8f30db..2fd719f25 100644
--- a/Zotlabs/Module/Notes.php
+++ b/Zotlabs/Module/Notes.php
@@ -39,7 +39,7 @@ class Notes extends Controller {
}
set_pconfig(local_channel(),'notes','text',$body);
- $ret['html'] = bbcode($body);
+ $ret['html'] = bbcode($body, ['tryoembed' => false]);
$ret['success'] = true;
}