From 54299332a9bc80faed28cf7dad7e774c003cccd4 Mon Sep 17 00:00:00 2001 From: Niv Date: Mon, 13 Jul 2026 14:58:12 +0200 Subject: [PATCH] fix: HONEYPOT_MARKER for honeypot message --- src/handlers/honeypotHandler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/honeypotHandler.js b/src/handlers/honeypotHandler.js index 482d112..ccc9cc4 100644 --- a/src/handlers/honeypotHandler.js +++ b/src/handlers/honeypotHandler.js @@ -9,7 +9,7 @@ const HONEYPOT_CHANNEL_ID = process.env.HONEYPOT_CHANNEL_ID; // Stable marker embedded in the bot's warning message so we can detect it // across restarts without persisting state. -const HONEYPOT_MARKER = ""; +const HONEYPOT_MARKER = "TrackerBot Honeypot"; const HONEYPOT_WARNING = `${HONEYPOT_MARKER}\n# ⛔️⚠️ DO NOT SEND MESSAGES HERE, YOU WILL BE BANNED INSTANTLY ⚠️⛔️`;