|
@@ -128,16 +128,16 @@ namespace GxPress.Service.Implement.Topic
|
|
var firstContent = string.Empty;
|
|
var firstContent = string.Empty;
|
|
foreach (var jsonData in contentJsonData)
|
|
foreach (var jsonData in contentJsonData)
|
|
{
|
|
{
|
|
- if (jsonData.Type == OldTextEditorTypeConst.Text.GetHashCode() && forCount == 1)
|
|
|
|
|
|
+ if (jsonData.Type == AllTypeConst.Text.GetHashCode() && forCount == 1)
|
|
//文本
|
|
//文本
|
|
firstContent = jsonData.Text;
|
|
firstContent = jsonData.Text;
|
|
- else if (jsonData.Type == OldTextEditorTypeConst.Text.GetHashCode() && forCount > 1)
|
|
|
|
|
|
+ else if (jsonData.Type == AllTypeConst.Text.GetHashCode() && forCount > 1)
|
|
//文本
|
|
//文本
|
|
continue;
|
|
continue;
|
|
//图片
|
|
//图片
|
|
- else if (jsonData.Type == OldTextEditorTypeConst.Image.GetHashCode() && FileData.Count == 0)
|
|
|
|
|
|
+ else if (jsonData.Type == AllTypeConst.Image.GetHashCode() && FileData.Count == 0)
|
|
{
|
|
{
|
|
- if (imgData.Count > 9)
|
|
|
|
|
|
+ if (imgData.Count >= 9)
|
|
break;
|
|
break;
|
|
imgData.Add(jsonData);
|
|
imgData.Add(jsonData);
|
|
}
|
|
}
|