|
@@ -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)
|