From 6dce40d333278d9b991aaa20490eb9c680f55398 Mon Sep 17 00:00:00 2001 From: Giovani Finazzi <53719063+GiovaniFZ@users.noreply.github.com> Date: Thu, 1 May 2025 16:38:38 -0300 Subject: [PATCH] fix chatinfo in dms (#52) --- src/commands/info.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/commands/info.ts b/src/commands/info.ts index 416240a..2bf2b2d 100644 --- a/src/commands/info.ts +++ b/src/commands/info.ts @@ -37,12 +37,7 @@ async function getChatInfo(ctx: Context & { message: { text: string } }) { return chatInfo; } else { - return ctx.reply( - Strings.groupOnly, { - parse_mode: 'Markdown', - // @ts-ignore - reply_to_message_id: ctx.message.message_id - }); + return Strings.groupOnly } }