Compare commits

..

No commits in common. "3ca35eca4dd8107879f556567ec706fc6f960525" and "62b7ea80177b8869b62df0c377ef56c5321ffb5c" 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);
} else if (token) {
config.headers.Authorization = `Bearer ${token}`;
request(config).then(resolve).catch(reject);
resolve(request(config));
}
});
failedQueue = [];