mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 04:14:39 -05:00
bleh
This commit is contained in:
parent
fab6f2fd73
commit
04d3a04ea7
1 changed files with 5 additions and 2 deletions
|
@ -350,6 +350,8 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
var mediaproxy = config.media_proxy
|
var mediaproxy = config.media_proxy
|
||||||
|
var contentlang "en-US";
|
||||||
|
var contentregion = "US";
|
||||||
|
|
||||||
const {
|
const {
|
||||||
video: k,
|
video: k,
|
||||||
|
@ -357,9 +359,10 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
engagement,
|
engagement,
|
||||||
comments: inv_comments,
|
comments: inv_comments,
|
||||||
vid: inv_vid,
|
vid: inv_vid,
|
||||||
} = await INNERTUBE?.getYouTubeApiVideo(f, v);
|
} = await INNERTUBE?.getYouTubeApiVideo(f, v, contentlang, contentregion);
|
||||||
|
|
||||||
const data = await INNERTUBE?.getYouTubeApiVideo(f, v);
|
|
||||||
|
const data = await INNERTUBE?.getYouTubeApiVideo(f, v, contentlang, contentregion);
|
||||||
const color = data.color;
|
const color = data.color;
|
||||||
const color2 = data.color2;
|
const color2 = data.color2;
|
||||||
const desc = data?.desc;
|
const desc = data?.desc;
|
||||||
|
|
Loading…
Reference in a new issue