diff --git a/lib/chibi/net/http-server.scm b/lib/chibi/net/http-server.scm index a1bb3f4e..78b9f5d4 100644 --- a/lib/chibi/net/http-server.scm +++ b/lib/chibi/net/http-server.scm @@ -146,7 +146,7 @@ (cond ((mime-type-from-extension (path-extension path)) => (lambda (type) `((Content-Type . ,type)))) - (else '())))) + (else '((Content-Type . "application/octet-stream")))))) (servlet-respond request 200 "OK" headers) (send-file path (request-out request)))) (else