mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
Update msg.go (#958)
fix: send text message by api doesn't work. (#929)
This commit is contained in:
parent
781b13c604
commit
f4e4bfd639
@ -170,7 +170,7 @@ func (m *MessageApi) getSendMsgReq(c *gin.Context, req apistruct.SendMsg) (sendM
|
|||||||
log.ZDebug(c, "getSendMsgReq", "req", req.Content)
|
log.ZDebug(c, "getSendMsgReq", "req", req.Content)
|
||||||
switch req.ContentType {
|
switch req.ContentType {
|
||||||
case constant.Text:
|
case constant.Text:
|
||||||
text, ok := req.Content["content"].(string)
|
text, ok := req.Content["text"].(string)
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errs.ErrArgs.WithDetail("text is not string")
|
return nil, errs.ErrArgs.WithDetail("text is not string")
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user