From 2b2792de73ec5b504e1738b5120314a7a3ba8a54 Mon Sep 17 00:00:00 2001 From: Zeng1998 <1129142694@qq.com> Date: Fri, 30 Dec 2022 13:10:52 +0800 Subject: [PATCH] fix: logic of email validation (#877) * fix: fix logic of email validation * update --- api/user.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/user.go b/api/user.go index 1c3b4f90..ef7c1e4b 100644 --- a/api/user.go +++ b/api/user.go @@ -76,7 +76,7 @@ func (create UserCreate) Validate() error { if len(create.Email) > 256 { return fmt.Errorf("email is too long, maximum length is 256") } - if common.ValidateEmail(create.Email) { + if !common.ValidateEmail(create.Email) { return fmt.Errorf("invalid email format") } } @@ -118,7 +118,7 @@ func (patch UserPatch) Validate() error { if len(*patch.Email) > 256 { return fmt.Errorf("email is too long, maximum length is 256") } - if common.ValidateEmail(*patch.Email) { + if !common.ValidateEmail(*patch.Email) { return fmt.Errorf("invalid email format") } }