From df2bac61f0b3b468ea68e9c279461eea942bbdf9 Mon Sep 17 00:00:00 2001 From: glifocat Date: Wed, 4 Mar 2026 19:51:40 +0100 Subject: [PATCH] fix: format src/index.ts to pass CI prettier check (#711) Closes #710 Co-authored-by: Claude Opus 4.6 --- src/index.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/index.ts b/src/index.ts index 50d790d..85aba50 100644 --- a/src/index.ts +++ b/src/index.ts @@ -480,11 +480,7 @@ async function main(): Promise { const channelOpts = { onMessage: (chatJid: string, msg: NewMessage) => { // Sender allowlist drop mode: discard messages from denied senders before storing - if ( - !msg.is_from_me && - !msg.is_bot_message && - registeredGroups[chatJid] - ) { + if (!msg.is_from_me && !msg.is_bot_message && registeredGroups[chatJid]) { const cfg = loadSenderAllowlist(); if ( shouldDropMessage(chatJid, cfg) &&