1
Fork 0

add verified instance :3

This commit is contained in:
Ashley 2023-01-31 20:36:13 +00:00
parent 0c52dcf5f9
commit 2007a53705

View file

@ -186,10 +186,10 @@ module.exports = function (app, config, renderTemplate) {
const isvld = await core.isvalidvideo(v); const isvld = await core.isvalidvideo(v);
if (!v) res.redirect("/"); if (!v) res.redirect("/");
const u = await media_proxy(v); const u = await media_proxy(v);
var secure; var secure;
var verify;
if ( if (
req.hostname == "poketube.fun" || req.hostname == "poketube.fun" ||
@ -202,6 +202,12 @@ module.exports = function (app, config, renderTemplate) {
secure = false; secure = false;
} }
if (req.hostname == "pt.zzls.xyz") {
verify = true;
} else {
verify = false;
}
try { try {
const info = await modules.fetch("http://ip-api.com/json/"); const info = await modules.fetch("http://ip-api.com/json/");
const jj = await info.text(); const jj = await info.text();
@ -246,7 +252,6 @@ module.exports = function (app, config, renderTemplate) {
var d = false; var d = false;
} }
renderTemplate(res, req, "poketube.ejs", { renderTemplate(res, req, "poketube.ejs", {
color: data.color, color: data.color,
color2: data.color2, color2: data.color2,
@ -257,6 +262,7 @@ module.exports = function (app, config, renderTemplate) {
e, e,
a, a,
k, k,
verify,
secure, secure,
process, process,
sha384, sha384,