diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-12-13 14:13:38 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-12-13 14:13:38 +0200 |
commit | 9d2094bc20af37d4373c16084e6d607a347c5910 (patch) | |
tree | ad74ff70cf545dbdb981725508d971c7c7738761 /api/routes/getChunk/index.js | |
parent | 171d790e4492dc3063cd7874ce45a68ce8cf3665 (diff) | |
download | arching-kaos-tools-9d2094bc20af37d4373c16084e6d607a347c5910.tar.gz arching-kaos-tools-9d2094bc20af37d4373c16084e6d607a347c5910.tar.bz2 arching-kaos-tools-9d2094bc20af37d4373c16084e6d607a347c5910.zip |
Wrong function call fixed
Diffstat (limited to 'api/routes/getChunk/index.js')
-rw-r--r-- | api/routes/getChunk/index.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/api/routes/getChunk/index.js b/api/routes/getChunk/index.js index d848ce9..031d2c8 100644 --- a/api/routes/getChunk/index.js +++ b/api/routes/getChunk/index.js @@ -18,12 +18,14 @@ module.exports = (req, res) => { { if(fs.existsSync(path)) { - res.send(fs.readFileSync(path)); + res.writeHead(200, {'Content-Type': 'application/json'}); + res.end(fs.readFileSync(path)); } } catch (error) { - res.send({"error":error.message}); + res.writeHead(404, {'Content-Type': 'application/json'}); + res.end(JSON.stringify({"error":error.message})); } } else |