diff --git a/lib/www/server/api/middleware/sequence/get/index.js b/lib/www/server/api/middleware/sequence/get/index.js index e395257..ed052e5 100644 --- a/lib/www/server/api/middleware/sequence/get/index.js +++ b/lib/www/server/api/middleware/sequence/get/index.js @@ -7,7 +7,8 @@ module.exports = async function (req, res, next) { const handlers = { "application/json": json, "application/geo+json": geojson, - "application/dougal-map-sequence+octet-stream": binary + // application/vnd.aaltronav.dougal+octet-stream; format=0x1c + "application/vnd.aaltronav.dougal+octet-stream": binary }; const mimetype = (handlers[req.query.mime] && req.query.mime) || req.accepts(Object.keys(handlers));