Update key allowed characters

This commit is contained in:
Alan Grainger 2024-10-28 10:08:28 +01:00
parent ca0eba5949
commit 1d343fe9d2

View File

@ -7,7 +7,7 @@ const app = express()
require('dotenv').config()
app.get('/share/:key', async (req, res) => {
if (req.params.key.match(/[^A-Za-z0-9-]/)) {
if (req.params.key.match(/[^A-Za-z0-9-_]/)) {
// Invalid characters in the incoming URL
res.status(404).send()
} else {