aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Zotlabs/Lib/Activity.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php
index e043665ca..7dba55a63 100644
--- a/Zotlabs/Lib/Activity.php
+++ b/Zotlabs/Lib/Activity.php
@@ -2273,6 +2273,14 @@ class Activity {
if ($act->type === 'emojiReaction') {
$content['content'] = (($act->tgt && $act->tgt['type'] === 'Image') ? '[img=32x32]' . $act->tgt['url'] . '[/img]' : '&#x' . $act->tgt['name'] . ';');
}
+
+ if (in_array($act->type, ['EmojiReaction', 'EmojiReact'])) {
+ // Pleroma reactions
+ $t = trim(self::get_textfield($act->data, 'content'));
+ if (mb_strlen($t) === 1) {
+ $content['content'] = $t;
+ }
+ }
}
$s['item_thread_top'] = 0;