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
- Domain Verification Failed - Fastly Conf...
I am trying to add my subdomain api.getmyself.app to my Custom Domain, but I keep getting the error: Domain 'getmyself.app' is owned by another customer I have...
- Data not loading at the frontend
My App that has been working for weeks, ain't loading anything at the frontend anymore. I thought maybe the API key expired but it's not the case. Users are log...
- Do I need to upgrade my Appwrite plan?
So i am making a file hosting & sharing platform (voltzy.lol) and i am expecting approx 5-8 million visit per month and over 30 million uploads per month do i n...