From f69f576e2423068d24a4e445c00dc4ccc298fd19 Mon Sep 17 00:00:00 2001 From: Lucas Gabriel Date: Thu, 1 May 2025 14:17:16 -0300 Subject: [PATCH 1/2] Update dependabot.yml --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b417983..5f0889c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,4 +8,4 @@ updates: - package-ecosystem: "npm" # See documentation for possible values directory: "/" # Location of package manifests schedule: - interval: "daily" + interval: "weekly" 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 2/2] 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 } }