diff options
author | Mario <mario@mariovavti.com> | 2022-05-11 11:50:29 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-05-11 11:50:29 +0000 |
commit | a7968e6525ab47bc44d6a8b5a01cf82ac6d5ea03 (patch) | |
tree | 435abde61af1ed8ec4f406aee4c26da2b4ef5788 /Zotlabs/Lib | |
parent | e59cc3d40490939aa19a13246fdc2f8b8d80b1db (diff) | |
download | volse-hubzilla-a7968e6525ab47bc44d6a8b5a01cf82ac6d5ea03.tar.gz volse-hubzilla-a7968e6525ab47bc44d6a8b5a01cf82ac6d5ea03.tar.bz2 volse-hubzilla-a7968e6525ab47bc44d6a8b5a01cf82ac6d5ea03.zip |
update queries in mod search - fixes #1677
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/Activity.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 7dba55a63..ba45e9927 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -2270,6 +2270,7 @@ class Activity { $s['mid'] = $act->obj['id']; $s['parent_mid'] = $act->obj['id']; } + if ($act->type === 'emojiReaction') { $content['content'] = (($act->tgt && $act->tgt['type'] === 'Image') ? '[img=32x32]' . $act->tgt['url'] . '[/img]' : '&#x' . $act->tgt['name'] . ';'); } |