From 5ccacb2a91251b88c556d84fa786f4029fe348c0 Mon Sep 17 00:00:00 2001 From: Scott Powell Date: Sun, 14 Sep 2025 21:51:32 +1000 Subject: [PATCH] * bug fix --- examples/simple_room_server/MyMesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/simple_room_server/MyMesh.cpp b/examples/simple_room_server/MyMesh.cpp index 9e89a7d2..24a3a32f 100644 --- a/examples/simple_room_server/MyMesh.cpp +++ b/examples/simple_room_server/MyMesh.cpp @@ -313,7 +313,7 @@ void MyMesh::onAnonDataRecv(mesh::Packet *packet, const uint8_t *secret, const m } } - auto client = acl.putClient(sender, 0); // add to known clients (if not already known) + client = acl.putClient(sender, 0); // add to known clients (if not already known) if (sender_timestamp <= client->last_timestamp) { MESH_DEBUG_PRINTLN("possible replay attack!"); return;