Update ML timeout handling and adjust distance threshold for path hops

This commit is contained in:
Winston Lowe
2026-03-31 18:55:22 -07:00
parent d0e3767db6
commit 817c60a155
3 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -142,7 +142,7 @@ class _NeighborsScreenState extends State<NeighborsScreen> {
void _handleNeighborsResponse(MeshCoreConnector connector, Uint8List frame) {
final buffer = BufferReader(frame);
final contacts = connector.allContacts;
final contacts = connector.allContactsUnfiltered;
try {
final neighborCount = buffer.readUInt16LE();
final parsedNeighbors = parseNeighborsData(buffer, buffer.readUInt16LE());