mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 11:18:29 +01:00
fix dislikes - again
This commit is contained in:
parent
1d52d5e2ec
commit
8b9aee8515
1 changed files with 3 additions and 2 deletions
|
@ -34,10 +34,11 @@ function getJson(str) {
|
||||||
}
|
}
|
||||||
|
|
||||||
const dislike = await fetch(`${dislike_api}${video_id}`).then((res) =>
|
const dislike = await fetch(`${dislike_api}${video_id}`).then((res) =>
|
||||||
getJson(res)
|
res.json()
|
||||||
);
|
);
|
||||||
|
|
||||||
const headers = {};
|
|
||||||
|
const headers = {};
|
||||||
/*
|
/*
|
||||||
* Parses and fetches an xml
|
* Parses and fetches an xml
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue