fix Blog Entity content is empty or null will throw IndexOutOfRangeException

pull/1467/head
liwenqiang 6 years ago
parent a07ab5e69f
commit 307a06ae8b

@ -34,7 +34,10 @@ namespace Volo.Blogging.Pages.Blog
var closingTag = "</p>";
var html = RenderMarkdownToString(content);
if (string.IsNullOrWhiteSpace(html))
{
return "";
}
var splittedHtml = html.Split(closingTag);
if (splittedHtml.Length < 1)

Loading…
Cancel
Save