From ae4c2aef693ffc4ad1b4f049b61eb5fdba5dfa31 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Fri, 30 Dec 2022 14:51:43 +0000 Subject: [PATCH] + webp magic bytes. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4093 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- core/core.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/core.js b/core/core.js index fff9e6a9..4f7ce728 100644 --- a/core/core.js +++ b/core/core.js @@ -532,6 +532,9 @@ function sendData(response, data, type, headers) { startsWithBytes(data, [0x47, 0x49, 0x46, 0x38, 0x39, 0x61])) { response.writeHead(200, Object.assign({"Content-Type": "image/gif", "Content-Length": data.byteLength}, headers || {})); response.end(data); + } 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, [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);