From 4019741a81144f2ed11e8dc8ee6025a4349688c0 Mon Sep 17 00:00:00 2001 From: Winston Lowe Date: Sun, 15 Feb 2026 12:58:34 -0800 Subject: [PATCH] Update lib/connector/meshcore_connector.dart Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- lib/connector/meshcore_connector.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/connector/meshcore_connector.dart b/lib/connector/meshcore_connector.dart index a6f99d2..1290711 100644 --- a/lib/connector/meshcore_connector.dart +++ b/lib/connector/meshcore_connector.dart @@ -2035,7 +2035,7 @@ class MeshCoreConnector extends ChangeNotifier { } void _handleContactAdvert(Contact contact) { - if (contact.publicKey == _selfPublicKey) { + if (listEquals(contact.publicKey, _selfPublicKey)) { return; }