aboutsummaryrefslogtreecommitdiff
path: root/src/main.py
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-07-10 22:37:15 +1200
committerArslaan Pathan <[email protected]>2026-07-10 22:37:15 +1200
commitce6bfe08e4545a98a3144d5903fedfa5814dd834 (patch)
tree80bacbb6dc0ace065dbe39103b30b2e1c29b50b1 /src/main.py
parent8dea6c48621b6f933a3a88fbffa4277bda8c00c5 (diff)
downloadslack-botnet-ce6bfe08e4545a98a3144d5903fedfa5814dd834.tar.xz
slack-botnet-ce6bfe08e4545a98a3144d5903fedfa5814dd834.zip
Add AI filtering
Diffstat (limited to 'src/main.py')
-rw-r--r--src/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.py b/src/main.py
index 02375cc..1c43240 100644
--- a/src/main.py
+++ b/src/main.py
@@ -26,7 +26,7 @@ async def handle_messages(message, say):
if message.get("user") == selfbot_user_id:
return
- if message.get("user") not in ["U0AKCBZHHMH", "U0BG82V0CP6"]:
+ if message.get("user") not in ["U0AKCBZHHMH"]:
await say("Botnet is temporarily disabled for users other than <@U0AKCBZHHMH> for debugging and the safety of all OAuth-authorized users. Please DM <@U0AKCBZHHMH> if this is not resolved within a few days.")
return