Slon/Endpoints/Get/Web: Set correct MIME type for about.html

This commit is contained in:
Alec Murphy 2025-03-21 08:33:34 -04:00
parent a84ddb4ec1
commit 75787090d2

View file

@ -31,7 +31,7 @@ if (String.BeginsWith("/@", session->path())) {
} }
if (!StrICmp("/about", 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; return;
} }