Update key allowed characters
This commit is contained in:
parent
ca0eba5949
commit
1d343fe9d2
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user