From a41aa3b91da8359103fac217c9fd7ab914d89699 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Sun, 12 May 2024 12:39:10 -1000 Subject: [PATCH] fix: :bug: Apps without websites would break consent page --- pages/oauth/consent.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/oauth/consent.vue b/pages/oauth/consent.vue index d10d6fc..bd8f5cc 100644 --- a/pages/oauth/consent.vue +++ b/pages/oauth/consent.vue @@ -101,7 +101,7 @@ const client_id = query.client_id; const scope = query.scope ? decodeURIComponent(query.scope as string) : ""; const validUrlParameters = - application && website && redirect_uri && client_id && scope; + application && redirect_uri && client_id && scope; const oauthScopeText: Record = { "rw:accounts": "$VERB your account information",