Skip to content

Commit

Permalink
Decode ContentAbstract to fix old data
Browse files Browse the repository at this point in the history
  • Loading branch information
EdiWang committed Oct 21, 2024
1 parent 3a9930e commit 6e3201c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Moonglade.Web/Pages/Shared/_PostListEntry.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}
</h3>

<abbr class="post-summary-text d-block mb-3">@(Model.ContentAbstract)</abbr>
<abbr class="post-summary-text d-block mb-3">@(ContentProcessor.HtmlDecode(Model.ContentAbstract))</abbr>

@if (null != Model.Tags)
{
Expand Down

0 comments on commit 6e3201c

Please sign in to comment.