recent/ab password keep same: sync connected password to addressbook anyway, delete recent password

also delete ab password

Signed-off-by: 21pages <pages21@163.com>
This commit is contained in:
21pages
2023-08-21 08:39:47 +08:00
parent c3abd3e2b3
commit b5411b686d
4 changed files with 40 additions and 14 deletions

View File

@@ -211,12 +211,15 @@ class AbModel {
it.first.alias = alias;
}
void unrememberPassword(String id) {
bool changePassword(String id, String hash) {
final it = peers.where((element) => element.id == id);
if (it.isEmpty) {
return;
if (it.isNotEmpty) {
if (it.first.hash != hash) {
it.first.hash = hash;
return true;
}
}
it.first.hash = '';
return false;
}
Future<bool> pushAb(
@@ -225,6 +228,7 @@ class AbModel {
bool isRetry = false}) async {
debugPrint(
"pushAb: toastIfFail:$toastIfFail, toastIfSucc:$toastIfSucc, isRetry:$isRetry");
if (!gFFI.userModel.isLogin) return false;
pushError.value = '';
if (isRetry) retrying.value = true;
DateTime startTime = DateTime.now();