|
|
@ -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")
|
|
|
|
}
|
|
|
|
}
|
|
|
|