mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 13:28:28 +01:00
so basically in germany you can eat food
This commit is contained in:
parent
544169c40e
commit
40c549b2d0
1 changed files with 11 additions and 6 deletions
|
@ -108,7 +108,6 @@ function IsInArray(array, id) {
|
|||
return false;
|
||||
}
|
||||
|
||||
|
||||
module.exports = function (app, config, renderTemplate) {
|
||||
app.get("/encryption", async function (req, res) {
|
||||
var v = req.query.v;
|
||||
|
@ -174,13 +173,19 @@ module.exports = function (app, config, renderTemplate) {
|
|||
const ip = JSON.parse(jj);
|
||||
|
||||
const isvld = await core.isvalidvideo(v);
|
||||
|
||||
if (!v) res.redirect("/");
|
||||
var secure;
|
||||
|
||||
if(req.hostname == "poketube.fun" || req.hostname == "poketube.site" || req.hostname == "poketube.online" || req.hostname == "poketube.xyz" || req.hostname == "watch.poketalebot.com") {
|
||||
secure = true
|
||||
|
||||
if (
|
||||
req.hostname == "poketube.fun" ||
|
||||
req.hostname == "poketube.site" ||
|
||||
req.hostname == "poketube.online" ||
|
||||
req.hostname == "poketube.xyz" ||
|
||||
req.hostname == "watch.poketalebot.com"
|
||||
) {
|
||||
secure = true;
|
||||
} else {
|
||||
secure = false
|
||||
secure = false;
|
||||
}
|
||||
|
||||
if (isvld) {
|
||||
|
|
Loading…
Reference in a new issue