fix: VerifyEmailExisting bug

This commit is contained in:
AnonymousDotNet 2024-10-31 09:58:48 +08:00
parent e1d4956d91
commit b9d8331e77

View file

@ -466,7 +466,7 @@ public class UserService : IUserService
var db = _services.GetRequiredService<IBotSharpRepository>();
var emailName = db.GetUserByEmail(email);
if (emailName != null && emailName.Verified)
if (emailName != null /*&& emailName.Verified*/)
{
return true;
}