mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 07:18:26 +01:00
qwq
This commit is contained in:
parent
88639e6b99
commit
6ff397f270
1 changed files with 2 additions and 5 deletions
|
@ -62,10 +62,7 @@ async function video(v) {
|
|||
|
||||
let nightlyRes;
|
||||
|
||||
const video = await fetch(`${config.tubeApi}video?v=${v}`)
|
||||
.then((res) => res.text())
|
||||
.then((xml) => JSON.parse(toJson(xml)));
|
||||
|
||||
|
||||
var inv_comments = await fetch(`${config.invapi}/comments/${v}`).then(
|
||||
(res) => res.text()
|
||||
);
|
||||
|
@ -96,7 +93,7 @@ async function video(v) {
|
|||
|
||||
return {
|
||||
json: data.video.Player,
|
||||
video,
|
||||
video: await fetch(`${config.tubeApi}video?v=${v}`).then((res) => res.text()) .then((xml) => JSON.parse(toJson(xml))),
|
||||
vid,
|
||||
comments,
|
||||
engagement: data.engagement,
|
||||
|
|
Loading…
Reference in a new issue