From 58eb0d0b52168cf9485af721348596738ca6fe46 Mon Sep 17 00:00:00 2001 From: jjxu <428192774@qq.com> Date: Mon, 16 Jun 2025 16:18:06 +0800 Subject: [PATCH] Update dto.go --- pkg/service/asChat/dto/dto.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/service/asChat/dto/dto.go b/pkg/service/asChat/dto/dto.go index 2e35ee4..3bfc202 100644 --- a/pkg/service/asChat/dto/dto.go +++ b/pkg/service/asChat/dto/dto.go @@ -83,7 +83,7 @@ func (m *MessageListType) BuildMessage(data *accountFiee.ChatRecordData) { } case accountFiee.MsgType_TextMsgType, accountFiee.MsgType_CardType: m.Message = Message{ - MsgType: accountFiee.MsgType_TextMsgType, + MsgType: data.MsgType, Text: data.Content, Media: []MessageMedia{}, LocalStamp: data.LocalStamp,