From 2b30f344759796fe2b7e218ab4db7222b7e0bf8c Mon Sep 17 00:00:00 2001 From: Lucas Gabriel <90426410+lucmsilva651@users.noreply.github.com> Date: Sun, 2 Jun 2024 22:14:44 +0000 Subject: [PATCH] Fixed spamwatch import --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index f88e0e5..f808247 100644 --- a/main.js +++ b/main.js @@ -4,7 +4,7 @@ const path = require('path'); const token = process.env.TGBOT_TOKEN; const bot = new TelegramBot(token, { polling: true }); const { isBlocked } = require('./blocklist'); -const { isOnSpamWatch } = require('./blocklist'); +const { isOnSpamWatch } = require('./spamwatch'); require('./logger'); const commandsPath = path.join(__dirname, 'commands');