Skip to content

Commit

Permalink
fix: single chat unread status change.
Browse files Browse the repository at this point in the history
  • Loading branch information
FGadvancer committed Oct 9, 2023
1 parent f2af824 commit 8c787b0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion internal/rpc/msg/as_read.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,9 @@ func (m *msgServer) sendMarkAsReadNotification(
Seqs: seqs,
HasReadSeq: hasReadSeq,
}
m.notificationSender.NotificationWithSesstionType(ctx, sendID, recvID, constant.HasReadReceipt, sessionType, tips)
err := m.notificationSender.NotificationWithSesstionType(ctx, sendID, recvID, constant.HasReadReceipt, sessionType, tips)
if err != nil {
log.ZWarn(ctx, "send has read Receipt err", err)
}
return nil
}

0 comments on commit 8c787b0

Please sign in to comment.