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:
parent
5a79091211
commit
52c8d3dd19
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||||
|
|
Loading…
Reference in a new issue