diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-12-13 15:46:45 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-12-13 15:46:45 +0200 |
commit | de38fcf7bfbb5b8ba70e54621cb69f0b3aeba65c (patch) | |
tree | c177fe8578965d65f59184147d3d16c7232b5d56 /api/routes/getMap/index.js | |
parent | 9d2094bc20af37d4373c16084e6d607a347c5910 (diff) | |
download | arching-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.js | 5 |
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) { |