From 209651705db81d43a3a0546866467e0bf26fd7b9 Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 4 Feb 2024 19:50:31 +0000 Subject: fix custom emoji reactions arriving from pleroma --- Zotlabs/Lib/Activity.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 089fb3687..ddd91f60b 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -2187,9 +2187,22 @@ class Activity { if (in_array($act->type, ['EmojiReaction', 'EmojiReact'])) { // Pleroma reactions $t = trim(self::get_textfield($act->data, 'content')); + + // Unicode emojis if (mb_strlen($t) === 1) { $content['content'] = $t; } + // Custom emojis + elseif (preg_match('/^[:].*[:]$/i', $t, $match)) { + $content['content'] = $match[0]; + if (isset($act->data['tag']) && is_array($act->data['tag'])) { + foreach ($act->data['tag'] as $tag) { + if ($tag['type'] === 'Emoji' && $tag['name'] === trim($match[0], ':')) { + $content['content'] = '[img=32x32]' . $tag['id'] . '[/img]'; + } + } + } + } } } -- cgit v1.2.3