1
Fork 0

fix arabic lang lmao

This commit is contained in:
Ashley 2023-08-24 18:45:54 +00:00
parent 61f0759e82
commit 796cfe4403

View file

@ -12,6 +12,9 @@ const fetcher = require("../libpoketube/libpoketube-fetcher.js");
const getColors = require("get-image-colors"); const getColors = require("get-image-colors");
const wiki = require("wikipedia"); const wiki = require("wikipedia");
const language = "hl=en-US"
const region = "region=US"
/** /**
* Class representing PokeTube's core functionality. * Class representing PokeTube's core functionality.
*/ */
@ -79,7 +82,7 @@ class PokeTubeCore {
try { try {
const [invComments, videoInfo, videoData] = await Promise.all([ const [invComments, videoInfo, videoData] = await Promise.all([
fetch(`${this.config.invapi}/comments/${v}`).then((res) => res.text()), fetch(`${this.config.invapi}/comments/${v}?${language}`).then((res) => res.text()),
fetch(`${this.config.invapi}/videos/${v}`).then((res) => res.text()), fetch(`${this.config.invapi}/videos/${v}`).then((res) => res.text()),
curly curly
.get(`${this.config.tubeApi}video?v=${v}`, { .get(`${this.config.tubeApi}video?v=${v}`, {