1
0
Fork 0
mirror of https://codeberg.org/ashley/poke.git synced 2024-11-17 00:14:39 -05:00

add Region settings :3

This commit is contained in:
Ashley 2023-09-23 15:32:51 +00:00
parent 48076e81d6
commit 87bdb45f0e

View file

@ -177,11 +177,14 @@ module.exports = function (app, config, renderTemplate) {
});
app.get("/watch", async (req, res) => {
const { dm, v, e, r, f, m, quality: q, a, universe } = req.query;
const { dm, region, hl, v, e, r, f, m, quality: q, a, universe } = req.query;
if (!v) {
return res.redirect("/");
}
var contentlang = hl || "en-US";
var contentregion = region || "US";
const isVideoValid = await core.isvalidvideo(v);
if (!isVideoValid) {
@ -193,7 +196,7 @@ module.exports = function (app, config, renderTemplate) {
const secure = ["poketube.fun"].includes(req.hostname);
const verify = req.hostname === "pt.zzls.xyz";
core.video(v).then((data) => {
core.video(v, contentlang, contentregion).then((data) => {
try {
const k = data?.video;
const json = data?.json;