Fix bug with empty scopes
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
e0ea7275f7
commit
2c4c87927d
@ -102,7 +102,7 @@ const GetAuthRoute = (view = false) =>
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const scopes = scope.split(";");
|
const scopes = scope.split(";").filter((e: string) => e !== "");
|
||||||
|
|
||||||
Logging.debug("Scopes:", scope);
|
Logging.debug("Scopes:", scope);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user