From 83e08f12aed50d6f54f8f79ecd45786b6b1988bc Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 6 May 2021 22:07:48 +0200 Subject: [PATCH] core: fix arguments not being passed in FlowManager Signed-off-by: Jens Langhammer --- authentik/core/sources/flow_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentik/core/sources/flow_manager.py b/authentik/core/sources/flow_manager.py index 7be2e6d6e..3426636ca 100644 --- a/authentik/core/sources/flow_manager.py +++ b/authentik/core/sources/flow_manager.py @@ -148,7 +148,7 @@ class SourceFlowManager: def get_flow(self, **kwargs) -> HttpResponse: """Get the flow response based on user_matching_mode""" - action, connection = self.get_action() + action, connection = self.get_action(**kwargs) self._logger.debug("get_action() says", action=action, connection=connection) if connection: if action == Action.LINK: