From 08488e7a5c5d4215529fb1608751120e6f7dec60 Mon Sep 17 00:00:00 2001 From: shoopea Date: Thu, 12 Dec 2019 11:18:56 +0800 Subject: [PATCH] test --- td.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/td.go b/td.go index 49f2082..8713093 100644 --- a/td.go +++ b/td.go @@ -76,7 +76,7 @@ func ListenTG(c *tdlib.Client) { if updateMsg.Message.ReplyMarkup.GetReplyMarkupEnum() == tdlib.ReplyMarkupInlineKeyboardType { rm := updateMsg.Message.ReplyMarkup.(*tdlib.ReplyMarkupInlineKeyboard) for k, v := range rm.Rows { - fmt.Println("ReplyMarkupInlineKeyboard[%s][%s] : ", k, v.text) + fmt.Println("ReplyMarkupInlineKeyboard[%s][%s] : ", k, v.Text) } } }