From 80f3c19cab89283362d7cf87089a43043cccc514 Mon Sep 17 00:00:00 2001 From: thedragonsinn <98635854+thedragonsinn@users.noreply.github.com> Date: Tue, 3 Oct 2023 19:11:09 +0530 Subject: [PATCH] fbans isdigit fix x3 --- app/plugins/fbans.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/plugins/fbans.py b/app/plugins/fbans.py index cb1d96a..c4a96de 100644 --- a/app/plugins/fbans.py +++ b/app/plugins/fbans.py @@ -98,10 +98,10 @@ async def fed_ban(bot: bot, message: Message): resp_str += f"Failed in: {len(failed)}/{total}\n• " + "\n• ".join(failed) else: resp_str += f"Success! Fbanned in {total} feds." + await bot.send_message(chat_id=Config.FBAN_LOG_CHANNEL, text=resp_str) await progress.edit( text=resp_str, del_in=8, block=False, disable_web_page_preview=True ) - await bot.send_message(chat_id=Config.FBAN_LOG_CHANNEL, text=resp_str) @bot.add_cmd(cmd="unfban")