Skip to content

Commit

Permalink
fix(auth): comma in scopes
Browse files Browse the repository at this point in the history
  • Loading branch information
veryCrunchy committed May 5, 2024
1 parent c85c30f commit 1914bfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class Auth implements AuthProvider {
accessToken: result.access_token,
refreshToken: result.refresh_token,
accessTokenExpiresAt: createDate(new TimeSpan(result.expires_in, "s")),
scope: String(result.scope).replace(",", " "),
scope: (result.scope as unknown as string[]).join(" "),
};
return tokens;
}
Expand Down

0 comments on commit 1914bfc

Please sign in to comment.