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;
                     }
                 }