From a3b6996413365708063d6352a921cbe5083b28f8 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Wed, 28 Dec 2022 11:01:30 -0700 Subject: [PATCH] Discard emoji reactions for now --- users/models/inbox_message.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/users/models/inbox_message.py b/users/models/inbox_message.py index 533f152..b7b73ae 100644 --- a/users/models/inbox_message.py +++ b/users/models/inbox_message.py @@ -113,6 +113,9 @@ class InboxMessageStates(StateGraph): case "remove": # We are ignoring these right now (probably pinned items) pass + case "http://litepub.social/ns#emojireact": + # We're ignoring emoji reactions for now + pass case "flag": # Received reports await sync_to_async(Report.handle_ap)(instance.message)