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
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- Our Appwrite organization is suspended
Please give support regarding this , no app is working now , please solve my issue and give support , no one is replying in message section or email.
- Project in AppWrite Cloud doesn't allow ...
I have a collection where the data can't be opened. When I check the functions, there are three instances of a function still running that can't be deleted. The...