aboutsummaryrefslogtreecommitdiff
path: root/api/routes/getMap/index.js
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-12-13 15:46:45 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-12-13 15:46:45 +0200
commitde38fcf7bfbb5b8ba70e54621cb69f0b3aeba65c (patch)
treec177fe8578965d65f59184147d3d16c7232b5d56 /api/routes/getMap/index.js
parent9d2094bc20af37d4373c16084e6d607a347c5910 (diff)
downloadarching-kaos-tools-de38fcf7bfbb5b8ba70e54621cb69f0b3aeba65c.tar.gz
arching-kaos-tools-de38fcf7bfbb5b8ba70e54621cb69f0b3aeba65c.tar.bz2
arching-kaos-tools-de38fcf7bfbb5b8ba70e54621cb69f0b3aeba65c.zip
At least reply something
Diffstat (limited to 'api/routes/getMap/index.js')
-rw-r--r--api/routes/getMap/index.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/api/routes/getMap/index.js b/api/routes/getMap/index.js
index 60c7e0d..791afb5 100644
--- a/api/routes/getMap/index.js
+++ b/api/routes/getMap/index.js
@@ -21,6 +21,11 @@ module.exports = (req, res) => {
res.writeHead(200, {'Content-Type': 'application/json'});
res.end(fs.readFileSync(path));
}
+ else
+ {
+ res.writeHead(404, {'Content-Type': 'application/json'});
+ res.end(JSON.stringify({"error":"not found"}));
+ }
}
catch (error)
{