try 10 seconds

This commit is contained in:
ashley 2025-09-21 14:45:31 +02:00
parent 3afa6e879b
commit 8ceb1dcbd5

View File

@ -60,8 +60,8 @@ class InnerTubePokeVidious {
};
// retry indefinitely but with a 25-second max retry window to avoid spam
const fetchWithRetry = async (url, options = {}, maxRetryTime = 25000) => {
// retry indefinitely but with a 10-second max retry window to avoid spam
const fetchWithRetry = async (url, options = {}, maxRetryTime = 10000) => {
const startTime = Date.now();
let lastError;