|
@@ -556,6 +556,8 @@ namespace GxPress.Service.Implement.Collection
|
|
|
if (collectionType == GxPress.EnumConst.AllTypeConst.Group.GetHashCode())
|
|
|
{
|
|
|
var group = await _groupRepository.GetAsync(collectionDataId);
|
|
|
+ if (group == null)
|
|
|
+ return new CollectionContentJsonData();
|
|
|
var user = await _userRepository.GetAsync(group.UserId);
|
|
|
if (user == null)
|
|
|
return new CollectionContentJsonData();
|