李昊 4 年之前
父节点
当前提交
4fb9d0d5ca
共有 1 个文件被更改,包括 8 次插入6 次删除
  1. 8 6
      gx_api/GxPress/Service/GxPress.Service.Implement/Reply/ReplyService.Comment.cs

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

@@ -82,9 +82,10 @@ 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();
-                item.Remark = ((AllTypeConst)item.TypeValue).GetDescriptionOriginal();
+                var typeValue = item.TypeValue;
+                if (item.TypeValue == AllTypeConst.Note.GetHashCode())
+                    typeValue = AllTypeConst.Topic.GetHashCode();
+                item.Remark = ((AllTypeConst)typeValue).GetDescriptionOriginal();
                 item.IsComment = true;
             }
             return receipt;
@@ -147,9 +148,10 @@ 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();
-                item.Remark = ((AllTypeConst)item.TypeValue).GetDescriptionOriginal();
+                var typeValue = item.TypeValue;
+                if (item.TypeValue == AllTypeConst.Note.GetHashCode())
+                    typeValue = AllTypeConst.Topic.GetHashCode();
+                item.Remark = ((AllTypeConst)typeValue).GetDescriptionOriginal();
                 item.IsComment = true;
             }
             return receipt;