Skip to content

Commit

Permalink
Fix identity set by type (#3138)
Browse files Browse the repository at this point in the history
  • Loading branch information
robvandenbogaard committed Sep 26, 2022
1 parent 93a45a3 commit d5e5177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/mod_authentication/mod_authentication.erl
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ maybe_update_identity(_Ps, NewProps, IdnPs, Context) ->
{key, Key} = proplists:lookup(key, IdnPs),
{type, Type} = proplists:lookup(type, IdnPs),
{rsc_id, RscId} = proplists:lookup(rsc_id, IdnPs),
m_identity:set_by_type(RscId, Key, Type, NewProps, Context).
m_identity:set_by_type(RscId, Type, Key, NewProps, Context).


logon_identity(Auth, IdnPs, Context) ->
Expand Down

0 comments on commit d5e5177

Please sign in to comment.