diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/HttpServ.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/HttpServ.cc b/lib/HttpServ.cc index 9ab2959..1fa656a 100644 --- a/lib/HttpServ.cc +++ b/lib/HttpServ.cc @@ -369,6 +369,7 @@ String ProcessRequest::GetMime(const String & f) { if (ext == "html") return "text/html"; if (ext == "gif") return "image/gif"; if (ext == "png") return "image/png"; + if (ext == "class") return "application/octet-stream"; } return "text/plain"; |