Merge branch 'main' into set_types

This commit is contained in:
Lucas Gabriel 2025-05-02 13:48:35 -03:00 committed by GitHub
commit 1cff618aef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 7 deletions

View file

@ -8,4 +8,4 @@ updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
interval: "weekly"

View file

@ -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
}
}