
I am trying to update the email of a user and after doing that updateEmail the user is getting blocked for some reason

Future<bool> updateEmail(String email, String password) async {
  try {
    await account.updateEmail(email: email, password: password);
    return true;
  } catch (e) {
    if (kDebugMode) {
      print(e);
    }
    return false;
  }
This is the function I am using for the updateEmail
I am getting old email and password of the user

and the user is getting blocked somehow

Images:

@D5 Can you take a look into this
Recommended threads
- How to ByPass the Hostname restriction f...Hello, Im hosting my React application in a stateless server environment, where the IP of the client keeps changing for the server. How do I bypass the hostname... 
- Sites github connection failingI have an existing site I need to point to a new GitHub repo, as if moved the site to a GitHub org. having removed the original repo from the site and tried to... 
- Query.contains not supported on Cloud?I try to filter a row which contain a string inside a string array column, however I get the following error: ``` {"name":"AppwriteException","code":400,"type"... 
