Skip to content

Commit

Permalink
Merge pull request #65 from elements/develop
Browse files Browse the repository at this point in the history
Fix traceroute - converting int to hex for route_ids
  • Loading branch information
kevinelliott authored Aug 22, 2024
2 parents 151e719 + f224bfc commit a162cdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mqtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ async def handle_traceroute(self, msg):
if isinstance(r, str):
node = self.data.find_node_by_longname(r)
elif isinstance(r, int):
node = self.data.find_node_by_hex_id(r)
node = self.data.find_node_by_hex_id(utils.convert_node_id_from_int_to_hex(r))
else:
node = None

Expand Down

0 comments on commit a162cdd

Please sign in to comment.