From 195c2eb69192e15262d73fa190cf5d21a02449be Mon Sep 17 00:00:00 2001 From: Markov Date: Tue, 24 Feb 2026 23:41:34 +0100 Subject: [PATCH] =?UTF-8?q?refactor:=20=D1=83=D0=B1=D1=80=D0=B0=D0=BD?= =?UTF-8?q?=D0=B0=20=D0=B7=D0=B0=D1=89=D0=B8=D1=82=D0=B0=20=D0=BE=D1=82=20?= =?UTF-8?q?loop=20(Tracker=20=D1=84=D0=B8=D0=BB=D1=8C=D1=82=D1=80=D1=83?= =?UTF-8?q?=D0=B5=D1=82=20own=20messages)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/router.ts b/src/router.ts index b14539c..1e53a1a 100644 --- a/src/router.ts +++ b/src/router.ts @@ -61,12 +61,6 @@ export class EventRouter { const chatId = data.chat_id as string | undefined; const taskKey = data.task_key as string | undefined; - // Don't respond to own messages (safety net — Tracker already filters) - if (authorSlug === this.config.slug) { - this.log.debug('Ignoring own message'); - return; - } - if (!content) { this.log.warn({ data }, 'message.new event missing content'); return;