mirror of
https://codeberg.org/ashley/poke.git
synced 2025-02-05 01:28:43 -05:00
add lossless proxy url
This commit is contained in:
parent
ca3a2b2b90
commit
77d9a050e9
1 changed files with 10 additions and 4 deletions
|
@ -194,7 +194,7 @@ module.exports = function (app, config, renderTemplate) {
|
|||
const u = await media_proxy(v);
|
||||
|
||||
const secure = ["poketube.fun"].includes(req.hostname);
|
||||
const verify = req.hostname === "pt.zzls.xyz";
|
||||
const verify = req.hostname === "poketube.sudovanilla.com";
|
||||
|
||||
core.video(v, contentlang, contentregion).then((data) => {
|
||||
try {
|
||||
|
@ -225,6 +225,12 @@ module.exports = function (app, config, renderTemplate) {
|
|||
const reddit = extractInfo(REDDIT_REGEX);
|
||||
const instagram = extractInfo(INSTAGRAM_REGEX);
|
||||
|
||||
var vidurl = u.url
|
||||
|
||||
if(inv_vid.genre === "Music") {
|
||||
var vidurl = u.losslessurl
|
||||
}
|
||||
|
||||
let badges = "";
|
||||
let comments = "";
|
||||
let nnn = "";
|
||||
|
@ -258,7 +264,7 @@ module.exports = function (app, config, renderTemplate) {
|
|||
IsOldWindows,
|
||||
channelurlfixer,
|
||||
support,
|
||||
u: u.url,
|
||||
u: vidurl,
|
||||
isvidious: u.isInvidiousURL,
|
||||
video: json,
|
||||
date: k.Video.uploadDate,
|
||||
|
|
Loading…
Add table
Reference in a new issue