fix: change the afterSendSingleMsg config and fix CallbackSingleMsgRead unused problem (#1790)

* fix: open the afterSendSingleMsg config

* fix: fix the CallbackSingleMsgRead unused
This commit is contained in:
Brabem
2024-01-19 23:50:33 +08:00
committed by GitHub
parent 19f5c94d25
commit 907104701a
3 changed files with 17 additions and 5 deletions
+11
View File
@@ -124,6 +124,17 @@ func (m *msgServer) MarkMsgsAsRead(
return
}
}
req_callback := &cbapi.CallbackSingleMsgReadReq{
ConversationID: conversation.ConversationID,
UserID: req.UserID,
Seqs: req.Seqs,
ContentType: conversation.ConversationType,
}
if err = CallbackSingleMsgRead(ctx, req_callback); err != nil {
return nil, err
}
if err = m.sendMarkAsReadNotification(ctx, req.ConversationID, conversation.ConversationType, req.UserID,
m.conversationAndGetRecvID(conversation, req.UserID), req.Seqs, hasReadSeq); err != nil {
return