This commit is contained in:
shoopea 2019-05-18 16:12:58 +08:00
parent 0e7ba94f8b
commit 5725b86d20

2
bot.go
View File

@ -184,7 +184,7 @@ func botMsgDump(m *tb.Message) {
} else if objTypeId != objTypeMessage {
res = `This is not a message reference`
} else {
cwm, err := getMsg(objId)
cwm, _ := getMsg(objId)
b, _ := json.Marshal(cwm)
res = string(b)
}