...
|
...
|
@@ -80,15 +80,6 @@ func (l *SystemEditAticleCommentShowLogic) disableShow(commentId int64, companyI |
|
|
if err != nil {
|
|
|
return err
|
|
|
}
|
|
|
// 减少上级评论的回复数量
|
|
|
// if commentInfo.Pid != 0 {
|
|
|
// err = l.svcCtx.ArticleCommentRepository.IncreaseCountReply(l.ctx, c, -1, commentInfo.Pid)
|
|
|
// if err != nil {
|
|
|
// return err
|
|
|
// }
|
|
|
// }
|
|
|
// 减少最顶层的评论回复计数
|
|
|
// if commentInfo.TopId != 0 && commentInfo.Pid != commentInfo.TopId {
|
|
|
if commentInfo.TopId != 0 {
|
|
|
err = l.svcCtx.ArticleCommentRepository.IncreaseCountReply(l.ctx, c, -1, commentInfo.TopId)
|
|
|
if err != nil {
|
...
|
...
|
@@ -157,15 +148,8 @@ func (l *SystemEditAticleCommentShowLogic) enableShow(commentId int64, companyId |
|
|
if err != nil {
|
|
|
return err
|
|
|
}
|
|
|
// 增加上级评论的回复数量
|
|
|
// if commetInfo.Pid != 0 {
|
|
|
// err = l.svcCtx.ArticleCommentRepository.IncreaseCountReply(l.ctx, c, 1, commetInfo.Pid)
|
|
|
// if err != nil {
|
|
|
// return err
|
|
|
// }
|
|
|
// }
|
|
|
|
|
|
// 增加最顶层的评论回复计数
|
|
|
// if commetInfo.TopId != 0 && commetInfo.Pid != commetInfo.TopId {
|
|
|
if commetInfo.TopId != 0 {
|
|
|
err = l.svcCtx.ArticleCommentRepository.IncreaseCountReply(l.ctx, c, 1, commetInfo.TopId)
|
|
|
if err != nil {
|
...
|
...
|
|