From 8925787a130c2d777d2147927407f0e84bf18206 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sat, 15 May 2021 17:42:37 +0200 Subject: [PATCH] flows: fix error when using cancel flow Signed-off-by: Jens Langhammer --- authentik/flows/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentik/flows/views.py b/authentik/flows/views.py index 05858520f..3935b9a10 100644 --- a/authentik/flows/views.py +++ b/authentik/flows/views.py @@ -298,7 +298,7 @@ class CancelView(View): if SESSION_KEY_PLAN in request.session: del request.session[SESSION_KEY_PLAN] LOGGER.debug("Canceled current plan") - return redirect("authentik_core:default-invalidation") + return redirect("authentik_flows:default-invalidation") class ToDefaultFlow(View):