lihao 4 년 전
부모
커밋
9cb519e996
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      gx_api/GxPress/Service/GxPress.Service.Implement/Topic/TopicService.cs

+ 2 - 2
gx_api/GxPress/Service/GxPress.Service.Implement/Topic/TopicService.cs

@@ -665,9 +665,9 @@ namespace GxPress.Service.Implement.Topic
                 {
                     foreach (var data in item.Data)
                     {
-                        if (!string.IsNullOrEmpty(data.Title))
+                        if (string.IsNullOrEmpty(data.Title))
                             data.Title = string.Empty;
-                        if (!string.IsNullOrEmpty(data.FileName))
+                        if (string.IsNullOrEmpty(data.FileName))
                             data.FileName = string.Empty;
                     }
                 }