pa11y / pa11y-dashboard

Pa11y Dashboard is a web interface which helps you monitor the accessibility of your websites
https://pa11y.org
GNU General Public License v3.0
983 stars 181 forks source link

Reorder the routes to avoid MongoDB ObjectID error #277

Closed josebolos closed 3 years ago

josebolos commented 3 years ago

When trying to add a new URL, the Node.js MongoDB driver complains with the following error:

ObjectID generation failed. Argument passed in must be a single String of 12 bytes or a string of 24 hex characters

This is because the /new url gets captured by the /:id route defined in /route/task/index.js. It's another instance of #244 that I missed when fixing it.