core: fix arguments not being passed in FlowManager

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-05-06 22:07:48 +02:00
parent 6526659b51
commit 83e08f12ae
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ class SourceFlowManager:
def get_flow(self, **kwargs) -> HttpResponse: def get_flow(self, **kwargs) -> HttpResponse:
"""Get the flow response based on user_matching_mode""" """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) self._logger.debug("get_action() says", action=action, connection=connection)
if connection: if connection:
if action == Action.LINK: if action == Action.LINK: