From 198971a8154105f44aa700de38349d3035c67ed2 Mon Sep 17 00:00:00 2001 From: Alan Bridgeman Date: Sat, 31 Jan 2026 21:45:33 -0600 Subject: [PATCH] Needed to change response parsing for status on pending app waiting --- src/oauth/OAuthApp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/oauth/OAuthApp.ts b/src/oauth/OAuthApp.ts index 46efcad..09da37f 100644 --- a/src/oauth/OAuthApp.ts +++ b/src/oauth/OAuthApp.ts @@ -252,7 +252,7 @@ export class OAuthApp 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;