We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7fe814 commit 4f2470eCopy full SHA for 4f2470e
internal/google/client.go
@@ -134,10 +134,10 @@ func (c *client) GetUsers(query string) ([]*admin.User, error) {
134
// Identity Store will accept and a 'space' for an empty name but not a 'zero width space'
135
// So we need to replace any 'zero width space' strings with a single 'space' to allow comparison and sync
136
for _, user := range u {
137
- if user.Name.GivenName == string("\u200b") {
+ if user.Name.GivenName == string("\u200B") {
138
user.Name.GivenName = " "
139
}
140
- if user.Name.FamilyName == string("\u200b") {
+ if user.Name.FamilyName == string("\u200B") {
141
user.Name.FamilyName = " "
142
143
0 commit comments