Needed to change response parsing for status on pending app waiting
All checks were successful
Publish to Private NPM Registry / publish (push) Successful in 40s
All checks were successful
Publish to Private NPM Registry / publish (push) Successful in 40s
This commit is contained in:
parent
9e4138143b
commit
198971a815
1 changed files with 1 additions and 1 deletions
|
|
@ -252,7 +252,7 @@ export class OAuthApp<TCustomClaims extends BridgemanAccessibleAppClaims> extend
|
||||||
if(response.status === 200) {
|
if(response.status === 200) {
|
||||||
const data = response.data;
|
const data = response.data;
|
||||||
|
|
||||||
if(data.active === true) {
|
if(data.status === 'active') {
|
||||||
logMessage('OAuth client is now active!', LogLevel.INFO);
|
logMessage('OAuth client is now active!', LogLevel.INFO);
|
||||||
|
|
||||||
active = true;
|
active = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue