Skip to content

Commit

Permalink
Bugfix: Auth token refresh flow
Browse files Browse the repository at this point in the history
Fix a missing payload for the token refresh request.
  • Loading branch information
eatyourgreens committed Jul 3, 2023
1 parent c43425e commit 6f37a63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const authClient = new Model({
client_id: config.clientAppID,
};

this._tokenRefreshPromise = this._makeRefreshTokenRequest();
this._tokenRefreshPromise = this._makeRefreshTokenRequest(data);
}

return this._tokenRefreshPromise;
Expand Down

0 comments on commit 6f37a63

Please sign in to comment.