From bb83c0b672abc5cb812e23d704880e1750fa61e6 Mon Sep 17 00:00:00 2001 From: V Date: Mon, 15 May 2023 18:20:34 +0200 Subject: [PATCH] [skip ci] PronounDB: Do not add pronouns to automod messages --- src/plugins/pronoundb/components/PronounsChatComponent.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/plugins/pronoundb/components/PronounsChatComponent.tsx b/src/plugins/pronoundb/components/PronounsChatComponent.tsx index e302676b..3e51544b 100644 --- a/src/plugins/pronoundb/components/PronounsChatComponent.tsx +++ b/src/plugins/pronoundb/components/PronounsChatComponent.tsx @@ -26,10 +26,12 @@ import { settings } from "../settings"; const styles: Record = findByPropsLazy("timestampInline"); +const AUTO_MODERATION_ACTION = 24; + function shouldShow(message: Message): boolean { if (!settings.store.showInMessages) return false; - if (message.author.bot || message.author.system) + if (message.author.bot || message.author.system || message.type === AUTO_MODERATION_ACTION) return false; if (!settings.store.showSelf && message.author.id === UserStore.getCurrentUser().id) return false;