mirror of
https://codeberg.org/ashley/poke
synced 2025-04-05 09:07:59 +00:00
add regex for vid ids
This commit is contained in:
parent
62d7def602
commit
78de660963
@ -190,6 +190,13 @@ module.exports = function (app, config, renderTemplate) {
|
||||
return res.redirect("/");
|
||||
}
|
||||
|
||||
const regex = new RegExp("^([a-zA-Z0-9_-]{11})");
|
||||
const isMatch = regex.test(v);
|
||||
|
||||
if (!isMatch) {
|
||||
return res.redirect("/");
|
||||
}
|
||||
|
||||
var contentlang = hl || "en-US";
|
||||
var contentregion = region || "US";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user