diff options
Diffstat (limited to 'api/routes')
-rw-r--r-- | api/routes/getChunk/index.js | 5 | ||||
-rw-r--r-- | api/routes/getLeaf/index.js | 5 | ||||
-rw-r--r-- | api/routes/getMap/index.js | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/api/routes/getChunk/index.js b/api/routes/getChunk/index.js index 031d2c8..6106aad 100644 --- a/api/routes/getChunk/index.js +++ b/api/routes/getChunk/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) { diff --git a/api/routes/getLeaf/index.js b/api/routes/getLeaf/index.js index 54df1e0..8855712 100644 --- a/api/routes/getLeaf/index.js +++ b/api/routes/getLeaf/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) { 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) { |