Skip to content

Commit

Permalink
fix(sdk): expand identity in session extension (#3843)
Browse files Browse the repository at this point in the history
Closes #3842
  • Loading branch information
aeneasr committed Mar 24, 2024
1 parent 49d93c0 commit 04f0231
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion session/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@ func (h *Handler) adminSessionExtend(w http.ResponseWriter, r *http.Request, ps
return
}

s, err := h.r.SessionPersister().GetSession(r.Context(), iID, ExpandNothing)
s, err := h.r.SessionPersister().GetSession(r.Context(), iID, ExpandDefault)
if err != nil {
h.r.Writer().WriteError(w, r, err)
return
Expand Down

0 comments on commit 04f0231

Please sign in to comment.