Skip to content

Commit

Permalink
send avoid request in lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis-Wijngaarden committed Apr 9, 2024
1 parent 34bb2b8 commit f98b4b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bluesky/plugins/asas/ssd_drone.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ def calculate_resolution(self, conf, ownship):
conflictresolutiontime.cr_time[i] = current_time
# send resolution over mqtt
body = {}
body['ac_id'] = ownship.id[i]
body['ac_id'] = str(ownship.id[i]).lower()
body['timestamp'] = int(time.time())
body['waypoint'] = {}
body['waypoint']['lat'] = int(lat_res * 10**7)
Expand Down

0 comments on commit f98b4b1

Please sign in to comment.