mirror of https://github.com/v2ray/v2ray-core
commit
876e2fcc73
|
@ -47,11 +47,11 @@ func newUserByEmail(config *DefaultConfig) *userByEmail {
|
||||||
|
|
||||||
func (v *userByEmail) addNoLock(u *protocol.MemoryUser) bool {
|
func (v *userByEmail) addNoLock(u *protocol.MemoryUser) bool {
|
||||||
email := strings.ToLower(u.Email)
|
email := strings.ToLower(u.Email)
|
||||||
user, found := v.cache[email]
|
_, found := v.cache[email]
|
||||||
if found {
|
if found {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
v.cache[email] = user
|
v.cache[email] = u
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue