mirror of
https://codeberg.org/ashley/poke
synced 2025-04-05 09:07:59 +00:00
add regex :3
This commit is contained in:
parent
78de660963
commit
d9ac3f21d0
@ -167,7 +167,9 @@ class InnerTubePokeVidious {
|
||||
*/
|
||||
isvalidvideo(v) {
|
||||
if (v != "assets" && v != "cdn-cgi" && v != "404") {
|
||||
return true;
|
||||
const regex = new RegExp("^([a-zA-Z0-9_-]{11})");
|
||||
const isMatch = regex.test(v);
|
||||
return isMatch;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user