diff --git a/internal/rpc/office/office.go b/internal/rpc/office/office.go index ab9da950a..e0ef89e43 100644 --- a/internal/rpc/office/office.go +++ b/internal/rpc/office/office.go @@ -453,7 +453,7 @@ func (s *officeServer) CommentOneWorkMoment(_ context.Context, req *pbOffice.Com if req.UserID != workMoment.UserID { msg.WorkMomentSendNotification(req.OperationID, workMoment.UserID, workMomentNotificationMsg) } - if req.ReplyUserID != "" && req.ReplyUserID != req.UserID { + if req.ReplyUserID != "" && req.ReplyUserID != workMoment.UserID && req.ReplyUserID != req.UserID { msg.WorkMomentSendNotification(req.OperationID, req.ReplyUserID, workMomentNotificationMsg) } log.NewInfo(req.OperationID, utils.GetSelfFuncName(), "resp: ", resp.String())