diff --git a/OliverBooth/Pages/Blog/RawArticle.cshtml.cs b/OliverBooth/Pages/Blog/RawArticle.cshtml.cs index 73eb273..d8fbbea 100644 --- a/OliverBooth/Pages/Blog/RawArticle.cshtml.cs +++ b/OliverBooth/Pages/Blog/RawArticle.cshtml.cs @@ -31,7 +31,7 @@ public class RawArticle : PageModel return NotFound(); } - Response.Headers.Add("Content-Type", "text/plain; charset=utf-8"); + Response.Headers.Append("Content-Type", "text/plain; charset=utf-8"); using Utf8ValueStringBuilder builder = ZString.CreateUtf8StringBuilder(); builder.AppendLine("# " + post.Title);