lukefx / hubot-telegram

Hubot adapter for Telegram
MIT License
160 stars 42 forks source link

Expose reply_to_message from message #58

Open danpoltawski opened 7 years ago

danpoltawski commented 7 years ago

I'm using hubot to do logging of messages and when a message is an inline reply, it can be confusing, if the reply is not noted. So it would be great if I could get access somehow to the reply_to_message field.

For example, the code I wanted to write:

messageFromTelegramMessage = (telegramMessage) ->
    message = ""
    if telegramMessage.reply_to_message?
        user = userFromTelegramUser telegramMessage.reply_to_message
        message += "> #{user.username}: \n> #{telegramMessage.reply_to_message.text}"

    message += telegramMessage.text

    return message