1
Fork 0

Update p/server.js

This commit is contained in:
Ashley 2023-11-09 07:05:55 +00:00
parent 4f12bda698
commit 2ceaca4547

View file

@ -104,6 +104,7 @@ app.get("/", (req, res) => {
const apiUrls = [
"https://returnyoutubedislikeapi.com/votes?videoId=",
"https://prod-poketube.testing.poketube.fun/api?v=",
];
// Define a cache object
@ -141,9 +142,9 @@ const { fetch } = await import("undici")
return; // Exit the loop if successful
} catch (err) {
// Log the error for this URL and continue to the next URL
res.json(`Error fetching data from ${apiUrl}: ${err.message}`);
console.log(`Error fetching data from ${apiUrl}: ${err.message}`);
errors.push(err.message);
return "";
}
}