Skip to content

Commit

Permalink
fix: missing lower conversion otherwise things break?
Browse files Browse the repository at this point in the history
  • Loading branch information
Gobot1234 committed Nov 24, 2024
1 parent df4b2c5 commit 33846b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/anvil/src/users/users.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export class UsersService {
ldapUserProps(ldapUser: LdapUser, profile_picture: string | undefined = undefined) {
return {
username: ldapUser.uid,
email: removeDomain(ldapUser.mail),
email: removeDomain(ldapUser.mail).toLowerCase(),
first_name: ldapUser.givenName,
last_name: ldapUser.sn,
organisational_unit: ldapUser.ou,
Expand Down

0 comments on commit 33846b9

Please sign in to comment.