Skip to content

Commit 93891b2

Browse files
committed
fix: msg status change to success when msg fetch from server.
Signed-off-by: Gordon <[email protected]>
1 parent 073764b commit 93891b2

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

internal/conversation_msg/conversion.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ func MsgDataToLocalChatLog(serverMessage *sdkws.MsgData) *model_struct.LocalChat
7878
ContentType: serverMessage.ContentType,
7979
Content: string(serverMessage.Content),
8080
IsRead: serverMessage.IsRead,
81-
Status: serverMessage.Status,
81+
Status: constant.MsgStatusSendSuccess,
8282
Seq: serverMessage.Seq,
8383
SendTime: serverMessage.SendTime,
8484
CreateTime: serverMessage.CreateTime,

internal/conversation_msg/message_check.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -282,14 +282,13 @@ func (c *Conversation) pullMessageIntoTable(ctx context.Context, pullMsgData map
282282
localMessagesMap := datautil.SliceToMap(localMessages, func(msg *model_struct.LocalChatLog) string { return msg.ClientMsgID })
283283
for _, v := range msgs.Msgs {
284284
log.ZDebug(ctx, "msg detail", "msg", v, "conversationID", conversationID)
285-
msg := MsgDataToLocalChatLog(v)
286285
//When the message has been marked and deleted by the cloud, it is directly inserted locally
287286
//without any conversation and message update.
288-
if msg.Status == constant.MsgStatusHasDeleted {
289-
insertMessage = append(insertMessage, msg)
287+
if v.Status == constant.MsgStatusHasDeleted {
288+
insertMessage = append(insertMessage, MsgDataToLocalChatLog(v))
290289
continue
291290
}
292-
msg.Status = constant.MsgStatusSendSuccess
291+
msg := MsgDataToLocalChatLog(v)
293292
// The message might be a filler provided by the server due to a gap in the sequence.
294293
if msg.ClientMsgID == "" {
295294
msg.ClientMsgID = utils.GetMsgID(c.loginUserID) + utils.Int64ToString(msg.Seq)

0 commit comments

Comments
 (0)