protoncr / tourmaline

Simple Telegram bot library for Crystal
https://tourmaline.dev
MIT License
158 stars 38 forks source link

Add allows you to edit the message text for inline messages #39

Closed dammer closed 3 years ago

dammer commented 3 years ago

Hi Chris, In the current version, you cannot change the text of the inline message. I fixed this and tested it on a live bot. Unfortunately, without specs, I don't see if I broke something else. If it is possible for you to accept these changes, I would be very happy, thanks anyway.

bot.edit_message_text(
  inline_message: active_game.not_nil!.inline_message_id,
  text: I18n.t("topic") % {first_name: user.try(&.first_name)}
)
watzon commented 3 years ago

Great work

dammer commented 3 years ago

Thank you!