From 64e6de19201525764b1724fc8a3f28939a57bc84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9licien=20FRANCOIS?= Date: Tue, 1 Mar 2016 13:08:40 +0100 Subject: [PATCH] Set default_type to null instead application/octet-stream Fix #139 Default content-type should not be application/octet-stream --- mime.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mime.js b/mime.js index 341b6a5c..51c5394e 100644 --- a/mime.js +++ b/mime.js @@ -87,7 +87,7 @@ var mime = new Mime(); mime.define(require('./types.json')); // Default type -mime.default_type = mime.lookup('bin'); +mime.default_type = null; // // Additional API specific to the default instance