Refactor contact filtering and improve localization strings; enhance path trace handling

This commit is contained in:
Winston Lowe
2026-03-24 17:45:54 -07:00
parent 411cd3f8d2
commit bde9a029c1
4 changed files with 59 additions and 35 deletions
+4 -1
View File
@@ -323,8 +323,11 @@ class MeshCoreConnector extends ChangeNotifier {
List<Contact> get allContacts => List.unmodifiable([
..._contacts,
..._discoveredContacts.where((c) => !c.isActive),
..._discoveredContacts.where(
(c) => !c.isActive && c.publicKeyHex != selfPublicKeyHex,
),
]);
List<Contact> get discoveredContacts {
return List.unmodifiable(_discoveredContacts);
}