1
Fork 0

add new stuff :3

This commit is contained in:
ashley 2024-09-11 20:24:49 +00:00
parent 2f0da0e6cc
commit ba73e43725

View file

@ -1,4 +1,22 @@
<%- include('./layouts/error.ejs', {
error: "Video Error",
description: `${err_reason}`
<%
function isValidYouTubeID(v) {
return /^[a-zA-Z0-9_-]{11}$/.test(v);
}
function isLetterSpam(v) {
return /^(.)\1+$/.test(v);
}
let reason;
if (!isValidYouTubeID(v) || isLetterSpam(v)) {
reason = "Video not found :c";
} else {
reason = "this helps protect our community.";
}
%>
<%- include('./layouts/error-video.ejs', {
error: "oops - loading failed :c",
description: `${reason}`
}) %>