Set LowerName to name with lower case
This commit is contained in:
parent
6457ace318
commit
a9c00d49da
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ func CreateUserFromAP(ctx context.Context, personID fm.PersonID, federationHostI
|
||||||
return nil, nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
newUser := user.User{
|
newUser := user.User{
|
||||||
LowerName: strings.ToLower(person.PreferredUsername.String()),
|
LowerName: strings.ToLower(name),
|
||||||
Name: name,
|
Name: name,
|
||||||
FullName: fullName,
|
FullName: fullName,
|
||||||
Email: email,
|
Email: email,
|
||||||
|
|
Loading…
Add table
Reference in a new issue