We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Judging by this update https://core.telegram.org/bots/api-changelog#december-29-2023 everything should work with reply_parameters, however: telegram.sendMediaGroup.reply_parameters not working but❗ reply_to_message_id still fine!
reply_parameters
telegram.sendMediaGroup.reply_parameters
reply_to_message_id
this.bot.telegram.sendMediaGroup( this.bot.chatId, form.files.map((file) => ({ type: 'document', media: { source: file.buffer, filename: Buffer.from(file.originalname, 'latin1').toString( 'utf-8', ), }, })), { disable_notification: true, reply_to_message_id: message.message_id, } as any, )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Judging by this update https://core.telegram.org/bots/api-changelog#december-29-2023 everything should work with
reply_parameters
, however:telegram.sendMediaGroup.reply_parameters
not working but❗reply_to_message_id
still fine!The text was updated successfully, but these errors were encountered: