Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refresh v2 #38

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

Prev

add early return

  • Loading branch information
fcjr committed Dec 16, 2020
commit a9fd0c95ad7f6ef116c5ddfd26c002a000515dc7
@@ -221,6 +221,9 @@ class TokenPool {
// as the token technically could have expired by the time the request
// arives
const accessToken = await AccessToken.get();
if (!accessToken) {
return;
}
response = await this._fetchNewTokens(accessToken, blindTokens);
}
if (response.ok) {
ProTip! Use n and p to navigate between commits in a pull request.