This commit is contained in:
Adrià Casajús 2022-02-17 17:32:12 +01:00
parent 3e983e3557
commit 4b13d5a28c
No known key found for this signature in database
GPG Key ID: F0033226A5AFC9B9
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ def authorize():
Scope=Scope,
)
else: # POST - user allows or denies
if not current_user.is_authenticated or not current_user.is_enabled:
if not current_user.is_authenticated or not current_user.is_active:
LOG.i(
"Attempt to validate a OAUth allow request by an unauthenticated user"
)