diff --git a/routes/download.routes.js b/routes/download.routes.js index c0e304f5909cd5899816d1f5ebed101915249f60..3199dc0916c906159929cc39d8ea7198aa52d93f 100644 --- a/routes/download.routes.js +++ b/routes/download.routes.js @@ -68,7 +68,7 @@ router.get('/kml/:repo*', async (req, res) => { router.get('/wcs/:repo*', async (req, res) => { - const layer = req.query.identifiers || req.query.IDENTIFIERS; + const layer = req.query.identifiers || req.query.IDENTIFIERS || req.query.COVERAGE; try { @@ -122,4 +122,4 @@ router.get('/actes*', async (req, res) => { } }); -module.exports = router; \ No newline at end of file +module.exports = router;