...
|
...
|
@@ -197,7 +197,11 @@ func (l *MiniCreateArticleCommentLogic) MiniCreateArticleComment(req *types.Mini |
|
|
|
|
|
// 创建回复消息
|
|
|
var atAllIds = make([]int64, 0)
|
|
|
if pComment != nil {
|
|
|
atAllIds = append(atAllIds, newComment.ToUserId)
|
|
|
} else {
|
|
|
atAllIds = append(atAllIds, articleInfo.AuthorId)
|
|
|
}
|
|
|
atAllIds = append(atAllIds, atWhoIds...)
|
|
|
var messageLogic = message.NewMiniBusinessLogic(l.ctx, l.svcCtx)
|
|
|
if pComment != nil {
|
...
|
...
|
|