diff --git a/core/core.js b/core/core.js index 60023049..bdd7ea44 100644 --- a/core/core.js +++ b/core/core.js @@ -542,6 +542,9 @@ function sendData(response, data, type, headers) { } else if (startsWithBytes(data, [0x52, 0x49, 0x46, 0x46, null, null, null, null, 0x57, 0x45, 0x42, 0x50])) { response.writeHead(200, Object.assign({"Content-Type": "image/webp", "Content-Length": data.byteLength}, headers || {})); response.end(data); + } else if (startsWithBytes(data, [0x3c, 0x73, 0x76, 0x67])) { + response.writeHead(200, Object.assign({"Content-Type": "image/svg+xml", "Content-Length": data.byteLength}, headers || {})); + response.end(data); } else if (startsWithBytes(data, [null, null, null, null, 0x66, 0x74, 0x79, 0x70, 0x6d, 0x70, 0x34, 0x32])) { response.writeHead(200, Object.assign({"Content-Type": "audio/mpeg", "Content-Length": data.byteLength}, headers || {})); response.end(data);