李昊 4 years ago
parent
commit
fd370574fa

+ 4 - 4
gx_api/GxPress/Service/GxPress.Service.Implement/Reply/ReplyService.Comment.cs

@@ -82,8 +82,8 @@ namespace GxPress.Service.Implement.Reply
                     item.Name = replyResult.Name;
                 }
                 item.AvatarUrl = StringUtils.AddDomainMin(item.AvatarUrl);
-                if (item.TypeValue == AllTypeConst.Note.GetHashCode())
-                    item.TypeValue = AllTypeConst.Topic.GetHashCode();
+                // if (item.TypeValue == AllTypeConst.Note.GetHashCode())
+                //     item.TypeValue = AllTypeConst.Topic.GetHashCode();
                 item.Remark = ((AllTypeConst)item.TypeValue).GetDescriptionOriginal();
                 item.IsComment = true;
             }
@@ -147,8 +147,8 @@ namespace GxPress.Service.Implement.Reply
                     item.Name = replyResult.Name;
                 }
                 item.AvatarUrl = StringUtils.AddDomainMin(item.AvatarUrl);
-                if (item.TypeValue == AllTypeConst.Note.GetHashCode())
-                    item.TypeValue = AllTypeConst.Topic.GetHashCode();
+                // if (item.TypeValue == AllTypeConst.Note.GetHashCode())
+                //     item.TypeValue = AllTypeConst.Topic.GetHashCode();
                 item.Remark = ((AllTypeConst)item.TypeValue).GetDescriptionOriginal();
                 item.IsComment = true;
             }

+ 1 - 1
gx_api/GxPress/Service/GxPress.Service.Implement/Topic/TopicService.Detail.cs

@@ -22,7 +22,7 @@ namespace GxPress.Service.Implement.Topic
         {
             var topic = await _topicRepository.GetAsync(request.Id);
             if (topic == null)
-                throw new BusinessException("通知不存在");
+                throw new BusinessException("话题不存在");
             var result = _mapper.Map<TopicDetailResult>(topic);
 
             if (string.IsNullOrWhiteSpace(result.Content))