From af1479bc75428e6be0953a970b6bfc5588d04646 Mon Sep 17 00:00:00 2001 From: bakatrouble Date: Thu, 31 Jul 2025 12:29:41 +0300 Subject: [PATCH] fix resend after --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index c96689e..d04b7ff 100644 --- a/main.py +++ b/main.py @@ -186,7 +186,7 @@ async def resend_after(msg: Message): args = msg.text.split()[1:] try: timestamp = int(args[0]) - skip_to_sub = int(args[1]) if len(args) > 1 else None + skip_to_sub = args[1] if len(args) > 1 else None except: traceback.print_exc() await msg.reply('Invalid timestamp or not provided')