From e33b81ba74ff9697deb0b1507ff9b246cba1695d Mon Sep 17 00:00:00 2001 From: Engincan VESKE Date: Fri, 17 Feb 2023 06:53:36 +0000 Subject: [PATCH] Update New.cshtml.cs --- .../src/Volo.Blogging.Web/Pages/Blogs/Posts/New.cshtml.cs | 1 - 1 file changed, 1 deletion(-) 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));