mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 09:38:25 +01:00
add verified instance :3
This commit is contained in:
parent
0c52dcf5f9
commit
2007a53705
1 changed files with 8 additions and 2 deletions
|
@ -186,10 +186,10 @@ module.exports = function (app, config, renderTemplate) {
|
|||
const isvld = await core.isvalidvideo(v);
|
||||
if (!v) res.redirect("/");
|
||||
|
||||
|
||||
const u = await media_proxy(v);
|
||||
|
||||
var secure;
|
||||
var verify;
|
||||
|
||||
if (
|
||||
req.hostname == "poketube.fun" ||
|
||||
|
@ -202,6 +202,12 @@ module.exports = function (app, config, renderTemplate) {
|
|||
secure = false;
|
||||
}
|
||||
|
||||
if (req.hostname == "pt.zzls.xyz") {
|
||||
verify = true;
|
||||
} else {
|
||||
verify = false;
|
||||
}
|
||||
|
||||
try {
|
||||
const info = await modules.fetch("http://ip-api.com/json/");
|
||||
const jj = await info.text();
|
||||
|
@ -245,7 +251,6 @@ module.exports = function (app, config, renderTemplate) {
|
|||
if (d === "[object Object]") {
|
||||
var d = false;
|
||||
}
|
||||
|
||||
|
||||
renderTemplate(res, req, "poketube.ejs", {
|
||||
color: data.color,
|
||||
|
@ -257,6 +262,7 @@ module.exports = function (app, config, renderTemplate) {
|
|||
e,
|
||||
a,
|
||||
k,
|
||||
verify,
|
||||
secure,
|
||||
process,
|
||||
sha384,
|
||||
|
|
Loading…
Reference in a new issue