From 75787090d283def138695f5b50540a5a037b4adc Mon Sep 17 00:00:00 2001 From: Alec Murphy Date: Fri, 21 Mar 2025 08:33:34 -0400 Subject: [PATCH] Slon/Endpoints/Get/Web: Set correct MIME type for about.html --- Slon/Endpoints/Get/Web.HC | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Slon/Endpoints/Get/Web.HC b/Slon/Endpoints/Get/Web.HC index e373d5e..b77d3f3 100644 --- a/Slon/Endpoints/Get/Web.HC +++ b/Slon/Endpoints/Get/Web.HC @@ -31,7 +31,7 @@ if (String.BeginsWith("/@", session->path())) { } if (!StrICmp("/about", session->path())) { - @slon_http_send_file(session, "M:/Slon/Static/html/about.html"); + @slon_http_send_html_file(session, "M:/Slon/Static/html/about.html"); return; }