Only process single custom emoji

Processing all custom emojis is neither wise nor necessary as both `Like` and `EmojiReact` only expect a single custom emoji

Signed-off-by: Plastikmensch <plastikmensch@users.noreply.github.com>
This commit is contained in:
Plastikmensch 2023-05-14 23:56:10 +02:00 committed by Jeremy Kescher
parent 21975a11fd
commit 03845b0be2
No known key found for this signature in database
GPG Key ID: 80A419A7A613DFA4
1 changed files with 5 additions and 4 deletions

View File

@ -179,13 +179,14 @@ class ActivityPub::Activity
nil nil
end end
# Ensure all emojis declared in the activity's tags are # Ensure emoji declared in the activity's tags are
# present in the database and downloaded to the local cache. # present in the database and downloaded to the local cache.
# Required by EmojiReact and Like for emoji reactions. # Required by EmojiReact and Like for emoji reactions.
def process_emoji_tags(tags) def process_emoji_tags(tags)
as_array(tags).each do |tag| emoji_tag = as_array(tags).find { |tag| tag['type'] == 'Emoji' }
process_single_emoji tag if tag['type'] == 'Emoji' return if emoji_tag.nil?
end
process_single_emoji emoji_tag
end end
def process_single_emoji(tag) def process_single_emoji(tag)