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

Array.isArray instead of instanceof #671

Open
msupra opened this issue Jan 6, 2021 · 0 comments
Open

Array.isArray instead of instanceof #671

msupra opened this issue Jan 6, 2021 · 0 comments

Comments

@msupra
Copy link

msupra commented Jan 6, 2021

Hi
In handlers/token-handler.js, you use instanceof at line 145:

if (!(client.grants instanceof Array)) {

This causes my grants array to fail, even though it is an array. Can you maybe change it to:

if (!(Array.isArray(client.grants))) {

Regards
Morne

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant