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
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_messagefield.For example, the code I wanted to write: