From 3680f2d86991144f14dc7b40671ffff0c0f68cb2 Mon Sep 17 00:00:00 2001 From: Stefan Radomski Date: Thu, 24 Oct 2013 20:41:45 +0200 Subject: application/octet-stream as default mimetype --- src/uscxml/URL.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uscxml/URL.cpp b/src/uscxml/URL.cpp index 67b8999..19a6db7 100644 --- a/src/uscxml/URL.cpp +++ b/src/uscxml/URL.cpp @@ -100,7 +100,7 @@ std::string URL::getMimeType(const std::string extension, std::string magic) { if (mimeTypes.find(extension) != mimeTypes.end()) { return mimeTypes[extension]; } - return ""; + return "application/octet-stream"; } -- cgit v0.12