Skip to content

Commit

Permalink
[iam] Use proper subjectId in updateOIDCUserOnSignin (#19189)
Browse files Browse the repository at this point in the history
  • Loading branch information
geropl authored Dec 5, 2023
1 parent 17397ad commit 4c3eb7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/server/src/iam/iam-session-app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export class IamSessionApp {
primaryEmail: recent.primaryEmail,
lastSigninTime: new Date().toISOString(),
});
await this.userService.updateUser(user.id, {
await this.userService.updateUser(SYSTEM_USER_ID, {
id: user.id,
fullName: payload.claims.name,
});
Expand Down

0 comments on commit 4c3eb7d

Please sign in to comment.