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
- 403 The current user has been blocked.
Hello, I have a free plan; I've tried to access my project and I get the message "403 The current user has been blocked." I have database, sites, and auth in us...
- [Bug?] row_already_exists (409) after ma...
Hi, I'm experiencing a confusing issue with Appwrite Cloud Setup: A `tournaments` table with a composite UNIQUE index on (tournament_name, date). Steps to rep...
- Am getting "The current user has been bl...
Was working on my app FLUTTER WEB APP, and suddenly, I have been blocked.... What can I do ? When I try to sign in to the console, I get "The current user has ...