mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 09:58:26 +01:00
add isSchoolProxy
This commit is contained in:
parent
8cc28e7d40
commit
54ba6edffe
1 changed files with 8 additions and 5 deletions
|
@ -240,7 +240,7 @@ module.exports = function (app, config, renderTemplate) {
|
|||
|
||||
var vidurl = u.url;
|
||||
var isvidious = u.isInvidiousURL;
|
||||
|
||||
var mediaproxy = config.media_proxy
|
||||
|
||||
|
||||
if (inv_vid?.genre === "Music") {
|
||||
|
@ -253,8 +253,10 @@ module.exports = function (app, config, renderTemplate) {
|
|||
}
|
||||
|
||||
if (req.useragent.source.includes("Pardus")) {
|
||||
var vidurl = "https://yt.sudovanilla.com";
|
||||
var isvidious = true;
|
||||
var vidurl = "https://tube-proxy.ashley0143.xyz";
|
||||
var mediaproxy = "https://media-proxy.ashley0143.xyz"
|
||||
var isvidious = false;
|
||||
var isSchoolProxy = true;
|
||||
}
|
||||
|
||||
let badges = "";
|
||||
|
@ -301,7 +303,7 @@ module.exports = function (app, config, renderTemplate) {
|
|||
twitter,
|
||||
k,
|
||||
dm,
|
||||
media_proxy_url: config.media_proxy,
|
||||
media_proxy_url: mediaproxy,
|
||||
instagram,
|
||||
useragent: req.useragent,
|
||||
verify,
|
||||
|
@ -310,6 +312,7 @@ module.exports = function (app, config, renderTemplate) {
|
|||
reddit,
|
||||
secure,
|
||||
process,
|
||||
isSchoolProxy,
|
||||
sha384,
|
||||
lightOrDark,
|
||||
isMobile: req.useragent.isMobile,
|
||||
|
|
Loading…
Reference in a new issue