remov isvalidvideo as its not needed anymore :3

This commit is contained in:
Ashley 2023-03-24 20:54:46 +00:00
parent 0097e161ff
commit 624454c134

View file

@ -20,8 +20,7 @@ const fetcher = require("../libpoketube/libpoketube-fetcher.js");
const getColors = require("get-image-colors");
const wiki = require("wikipedia");
const sqp =
"-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBy_x4UUHLNDZtJtH0PXeQGoRFTgw";
const sqp = "-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBy_x4UUHLNDZtJtH0PXeQGoRFTgw";
const config = {
tubeApi: "https://inner-api.poketube.fun/api/",
@ -184,31 +183,12 @@ async function search(query, cnt) {
}
async function isvalidvideo(v) {
if (v != "assets") {
var status;
async function ryd() {
try {
const engagement = await fetch(`${config.dislikes}${v}`).then((res) =>
res.json()
);
return engagement;
} catch {}
}
if (ryd.status) {
status = await ryd.status();
} else {
status = "200";
}
if (status == 400) {
return false;
} else {
if (v != "assets") {
return true;
} else {
return false;
}
}
}
}
module.exports = {
search,