diff --git a/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/New.cshtml.cs b/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/New.cshtml.cs index 3f4ff6a036..396e225727 100644 --- a/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/New.cshtml.cs +++ b/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/New.cshtml.cs @@ -66,7 +66,6 @@ namespace Volo.Blogging.Pages.Blog.Posts Post.Description = Post.Content.Truncate(PostConsts.MaxSeoFriendlyDescriptionLength); } - // Url encode the url Post.Url = WebUtility.UrlEncode(Post.Url); var postWithDetailsDto = await _postAppService.CreateAsync(ObjectMapper.Map(Post));