Skip to content

Commit

Permalink
Correctly pass the cookies_dict to on_logged_in
Browse files Browse the repository at this point in the history
  • Loading branch information
bradtgmurray committed Feb 1, 2024
1 parent 9d3287d commit 3d65bc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linkedin_matrix/web/provisioning_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def parse_cookies(c):
return web.HTTPBadRequest(body='{"error": "Missing keys"}', headers=self._headers)

try:
await user.on_logged_in(req_data, headers)
await user.on_logged_in(cookie_dict, headers)
track(user, "$login_success")
except Exception as e:
track(user, "$login_failed", {"error": str(e)})
Expand Down

0 comments on commit 3d65bc8

Please sign in to comment.