李昊 4 years ago
parent
commit
56d49d0e79

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

@@ -284,7 +284,7 @@ namespace GxPress.Service.Implement.Topic
                     if (imgData.Count > 0) { item.DataType = 2; item.Data = imgData; }
                     else if (FileData.Count > 0) { item.DataType = 3; item.Data = FileData; }
                     else item.DataType = 1;
-                    var contType = new List<int> { OldTextEditorTypeConst.Text.GetHashCode(), OldTextEditorTypeConst.Image.GetHashCode() };
+                    var contType = new List<int> { AllTypeConst.Text.GetHashCode(), AllTypeConst.Image.GetHashCode() };
                     item.FileCount = contentJsonData.Count(n => !contType.Contains(n.Type));
                 }
                 if (item.Data == null || item.Data.Count == 0)

+ 2 - 0
gx_api/GxPress/Service/GxPress.Service.Implement/UserService.cs

@@ -416,6 +416,8 @@ namespace GxPress.Service.Implement
                 Items = userLinkResult,
                 FriendUsers = await _userRepository.GetUserInfoResultsAsync(userIds)
             };
+            if (result.FriendUsers != null && result.FriendUsers.Count() > 0)
+                result.FriendUsers.Select(n => StringUtils.AddDomainMin(n.AvatarUrl));
             return result;
         }
         /// <summary>