diff --git a/src/Http/BasicAuthServer.cpp b/src/Http/BasicAuthServer.cpp index 0431360..10a0e64 100644 --- a/src/Http/BasicAuthServer.cpp +++ b/src/Http/BasicAuthServer.cpp @@ -25,7 +25,7 @@ namespace Tesses::Framework::Http { if(this->server) return this->server->Handle(ctx); ctx.statusCode = InternalServerError; - ctx.WithMimeType("text/html").SendText("

Internal Server Error

"); + ctx.WithMimeType("text/html").SendText("

Internal Server Error

\r\n

REASON: Internal server not set on Basic Auth

"); return true; }