Skip to content

Commit

Permalink
Ability to pass custom params from oidc login to launch (bugfix)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-viskov committed Aug 16, 2019
1 parent e1019c4 commit 50c9121
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pylti1p3/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.1.0'
__version__ = '1.1.1'
2 changes: 1 addition & 1 deletion pylti1p3/oidc_login.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def _prepare_redirect(self, launch_url):
nonce = self._get_uuid()
self._session_service.save_nonce(nonce)
if self._state_params:
self._session_service.save_state_params(self._state_params)
self._session_service.save_state_params(state, self._state_params)

# build Response
auth_params = {
Expand Down

0 comments on commit 50c9121

Please sign in to comment.