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
committed by Enot (ded) Skelly
parent 32dc0fca22
commit 637e08d22c
+1 -1
View File
@@ -879,7 +879,7 @@ List<_PathHop> _buildPathHops(
previousPosition = resolvedPosition;
}
// If the best candidate is much farther than the previous hop, it's likely not the correct match.
if (lastDistance + bestDistance > 70000 &&
if (lastDistance + bestDistance > 50000 &&
candidates != null &&
candidates.isNotEmpty) {
i--;