mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-10 14:09:27 +01:00
fix: Password success banner if not succeeded
This commit is contained in:
parent
42d9bf5fee
commit
51505631b5
@ -82,15 +82,17 @@ class _SettingsState extends State<Settings> {
|
||||
],
|
||||
);
|
||||
if (input == null) return;
|
||||
await showFutureLoadingDialog(
|
||||
final success = await showFutureLoadingDialog(
|
||||
context: context,
|
||||
future: () => Matrix.of(context)
|
||||
.client
|
||||
.changePassword(input.last, oldPassword: input.first),
|
||||
);
|
||||
await FlushbarHelper.createSuccess(
|
||||
message: L10n.of(context).passwordHasBeenChanged)
|
||||
.show(context);
|
||||
if (success.error == null) {
|
||||
await FlushbarHelper.createSuccess(
|
||||
message: L10n.of(context).passwordHasBeenChanged)
|
||||
.show(context);
|
||||
}
|
||||
}
|
||||
|
||||
void _deleteAccountAction(BuildContext context) async {
|
||||
|
Loading…
Reference in New Issue
Block a user