From eecdd9506f265565181526818cb90b3094c2ba54 Mon Sep 17 00:00:00 2001 From: Rachid Mrad <107004823+rachidatecs@users.noreply.github.com> Date: Mon, 18 Mar 2024 11:54:18 -0400 Subject: [PATCH] Update src/djangooidc/views.py Co-authored-by: Alysia Broddrick <109625347+abroddrick@users.noreply.github.com> --- src/djangooidc/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/djangooidc/views.py b/src/djangooidc/views.py index 3e21e6628..ffcd30634 100644 --- a/src/djangooidc/views.py +++ b/src/djangooidc/views.py @@ -119,7 +119,7 @@ def login_callback(request): # Set the flag to indicate that the redirect has been attempted request.session["redirect_attempted"] = True - # In the event of a sstate mismatch between OP and session, redirect the user to the + # In the event of a state mismatch between OP and session, redirect the user to the # beginning of login process without raising an error to the user. Attempt once. logger.warning(f"No State Defined: {nsd_err}") return redirect(request.session.get("next", "/"))