mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 08:18:29 +01:00
add check if its usa or not
This commit is contained in:
parent
a55e44fb88
commit
8cc28e7d40
1 changed files with 4 additions and 2 deletions
|
@ -240,12 +240,14 @@ module.exports = function (app, config, renderTemplate) {
|
|||
|
||||
var vidurl = u.url;
|
||||
var isvidious = u.isInvidiousURL;
|
||||
|
||||
|
||||
|
||||
if (inv_vid?.genre === "Music") {
|
||||
var vidurl = u.losslessurl;
|
||||
}
|
||||
|
||||
if (inv_vid.author.endsWith(" - Topic")) {
|
||||
if (!inv_vid.allowedRegions.includes("US")) {
|
||||
var vidurl = "https://eu-proxy.poketube.fun";
|
||||
var isvidious = true;
|
||||
}
|
||||
|
@ -254,7 +256,7 @@ module.exports = function (app, config, renderTemplate) {
|
|||
var vidurl = "https://yt.sudovanilla.com";
|
||||
var isvidious = true;
|
||||
}
|
||||
|
||||
|
||||
let badges = "";
|
||||
let comments = "";
|
||||
let nnn = "";
|
||||
|
|
Loading…
Reference in a new issue