mirror of
https://github.com/v2fly/v2ray-core.git
synced 2026-06-11 21:49:26 -04:00
Some code improvements
* Rewrite empty string checks more idiomatically. * Change strings.ToLower comparisons to strings.EqualFold. * Rewrite switch statement with only one case as if.
This commit is contained in:
@@ -149,7 +149,7 @@ func (v *TimedUserValidator) Remove(email string) bool {
|
||||
email = strings.ToLower(email)
|
||||
idx := -1
|
||||
for i, u := range v.users {
|
||||
if strings.ToLower(u.user.Email) == email {
|
||||
if strings.EqualFold(u.user.Email, email) {
|
||||
idx = i
|
||||
break
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user