From f4e4bfd6399d3478ec244f81f10dbeef1797c5bd Mon Sep 17 00:00:00 2001 From: John <139604278+g6619563@users.noreply.github.com> Date: Mon, 28 Aug 2023 10:27:49 +0700 Subject: [PATCH] Update msg.go (#958) fix: send text message by api doesn't work. (#929) --- internal/api/msg.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/api/msg.go b/internal/api/msg.go index ad89742af..2bbae9765 100644 --- a/internal/api/msg.go +++ b/internal/api/msg.go @@ -170,7 +170,7 @@ func (m *MessageApi) getSendMsgReq(c *gin.Context, req apistruct.SendMsg) (sendM log.ZDebug(c, "getSendMsgReq", "req", req.Content) switch req.ContentType { case constant.Text: - text, ok := req.Content["content"].(string) + text, ok := req.Content["text"].(string) if !ok { return nil, errs.ErrArgs.WithDetail("text is not string") }