diff --git a/modules/http_server_simple/http_server_simple.cpp b/modules/http_server_simple/http_server_simple.cpp index 30dfc519c..691209a27 100644 --- a/modules/http_server_simple/http_server_simple.cpp +++ b/modules/http_server_simple/http_server_simple.cpp @@ -293,7 +293,7 @@ void HTTPServerConnection::send_file(Ref request, const String if (_http_server->mimes.has(req_ext)) { ctype = _http_server->mimes[req_ext]; } else { - ctype = "text/plain"; + ctype = "application/octet-stream"; } s += "Content-Type: " + ctype + "\r\n";