This commit is contained in:
shoopea 2019-06-10 21:31:19 +08:00
parent bc61bd2d3a
commit 4ddf8c29f6

2
td.go
View File

@ -34,6 +34,8 @@ func ListenMQ(c *tdlib.Client, msgs <-chan TGCommand) {
time.Sleep(time.Until(lastOwnTDMsg.Add(time.Second))) time.Sleep(time.Until(lastOwnTDMsg.Add(time.Second)))
now = time.Now() now = time.Now()
} }
b := json.Marshal(m)
log.Printf("New MQ message :\n%s\n", string(b))
switch m.Type { switch m.Type {
case commandSendMsg: case commandSendMsg:
msgTxt := tdlib.NewInputMessageText(tdlib.NewFormattedText(m.Text, nil), true, true) msgTxt := tdlib.NewInputMessageText(tdlib.NewFormattedText(m.Text, nil), true, true)