all repos — telegram-bot-api @ 890c908551d3bf3edbb9277ac203283c9c3b2dbc

Golang bindings for the Telegram Bot API

fix EditMessageReplyMarkupConfig
boston bost56@gmail.com
Tue, 19 Apr 2016 12:19:36 +0500
commit

890c908551d3bf3edbb9277ac203283c9c3b2dbc

parent

a2483eb98b4c06e05105e15642e1dff45af5fafa

2 files changed, 1 insertions(+), 2 deletions(-)

jump to
M configs.goconfigs.go

@@ -600,7 +600,6 @@ // EditMessageReplyMarkupConfig allows you to modify the reply markup

// of a message. type EditMessageReplyMarkupConfig struct { BaseEdit - ReplyMarkup *InlineKeyboardMarkup } func (config EditMessageReplyMarkupConfig) values() (url.Values, error) {
M helpers.gohelpers.go

@@ -423,8 +423,8 @@ return EditMessageReplyMarkupConfig{

BaseEdit: BaseEdit{ ChatID: chatID, MessageID: messageID, + ReplyMarkup: &replyMarkup, }, - ReplyMarkup: &replyMarkup, } }