mirror of
https://codeberg.org/ashley/poke
synced 2025-04-06 01:27:59 +00:00
add regex :3
This commit is contained in:
parent
78de660963
commit
d9ac3f21d0
@ -167,7 +167,9 @@ class InnerTubePokeVidious {
|
|||||||
*/
|
*/
|
||||||
isvalidvideo(v) {
|
isvalidvideo(v) {
|
||||||
if (v != "assets" && v != "cdn-cgi" && v != "404") {
|
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 {
|
} else {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user