We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cc0dae commit d9057c0Copy full SHA for d9057c0
1 file changed
meshtastic/mesh_interface.py
@@ -670,7 +670,7 @@ def sendTraceRoute(
670
hopLimit=hopLimit,
671
)
672
# extend timeout based on number of nodes, limit by configured hopLimit
673
- waitFactor = min(len(self.nodes) - 1 if self.nodes else 0, hopLimit)
+ waitFactor = min(len(self.nodes) - 1 if self.nodes else 0, hopLimit+1)
674
self.waitForTraceRoute(waitFactor)
675
676
def onResponseTraceRoute(self, p: dict):
0 commit comments