fbans isdigit fix x3

This commit is contained in:
thedragonsinn
2023-10-03 19:11:09 +05:30
parent e0a3e7e252
commit 80f3c19cab

View File

@@ -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")