1
0
Fork 0
mirror of https://codeberg.org/ashley/poke.git synced 2024-11-17 14:34:38 -05:00

make it two trys to be faster

This commit is contained in:
Ashley 2022-09-23 19:00:57 +02:00
parent 5a79091211
commit 52c8d3dd19

View file

@ -35,7 +35,7 @@ module.exports = async function (video_id) {
*/ */
async function parsexml(id) { async function parsexml(id) {
for (let i = 0; i < 3; i++) { for (let i = 0; i < 2; i++) {
try { try {
const player = await fetch(`${new_api_url}?v=${id}`, headers); const player = await fetch(`${new_api_url}?v=${id}`, headers);
var h = await player.text(); var h = await player.text();