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

This commit is contained in:
Alan Bridgeman 2026-01-31 21:45:33 -06:00
parent 9e4138143b
commit 198971a815

View file

@ -252,7 +252,7 @@ export class OAuthApp<TCustomClaims extends BridgemanAccessibleAppClaims> extend
if(response.status === 200) {
const data = response.data;
if(data.active === true) {
if(data.status === 'active') {
logMessage('OAuth client is now active!', LogLevel.INFO);
active = true;