From b3f6007e69b253d2a7373ca62d5620d115690640 Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Thu, 4 Dec 2025 14:29:50 -0600 Subject: [PATCH] Fix basic auth --- src/Http/BasicAuthServer.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Http/BasicAuthServer.cpp b/src/Http/BasicAuthServer.cpp index db9a60e..0431360 100644 --- a/src/Http/BasicAuthServer.cpp +++ b/src/Http/BasicAuthServer.cpp @@ -25,7 +25,9 @@ namespace Tesses::Framework::Http { if(this->server) return this->server->Handle(ctx); ctx.statusCode = InternalServerError; - return false; + ctx.WithMimeType("text/html").SendText("

Internal Server Error

"); + return true; + }