This commit is contained in:
shoopea 2019-06-10 21:33:23 +08:00
parent f446f52f28
commit 9ae3c17cbd

2
td.go
View File

@ -35,7 +35,7 @@ func ListenMQ(c *tdlib.Client, msgs <-chan TGCommand) {
time.Sleep(time.Until(lastOwnTDMsg.Add(time.Second)))
now = time.Now()
}
b, err := json.Marshal(m)
b, _ := json.Marshal(m)
log.Printf("New MQ message :\n%s\n", string(b))
switch m.Type {
case commandSendMsg: