Skip to content

Commit

Permalink
Fixed addition of attributes when creating new user
Browse files Browse the repository at this point in the history
  • Loading branch information
this-Aditya committed Jul 11, 2024
1 parent 04e7edd commit d901224
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ public User dtoToEntity(FcmUserDto fcmUserDto) {
.setUserMetrics(getValidUserMetrics(fcmUserDto))
.setEnrolmentDate(fcmUserDto.getEnrolmentDate())
.setTimezone(fcmUserDto.getTimezone())
.setLanguage(fcmUserDto.getLanguage());
.setLanguage(fcmUserDto.getLanguage())
.setAttributes(fcmUserDto.getAttributes());
}

@Override
Expand Down

0 comments on commit d901224

Please sign in to comment.