Compare commits

..

No commits in common. "main" and "fix/auto-20260309-100520" have entirely different histories.

2 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ function processQueue(error: Error | null, token: string | null = null) {
reject(error); reject(error);
} else if (token) { } else if (token) {
config.headers.Authorization = `Bearer ${token}`; config.headers.Authorization = `Bearer ${token}`;
request(config).then(resolve).catch(reject); resolve(request(config));
} }
}); });
failedQueue = []; failedQueue = [];