Skip to content

Commit

Permalink
fixed ordering of key assignments
Browse files Browse the repository at this point in the history
  • Loading branch information
EricAndrechek committed Apr 11, 2024
1 parent 37dfdf9 commit 0648b63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracking-dashboard/backend/api/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ def api_rock7_upload():
decoded_data['timestamp'] = data['transmit_time']

# set data to decoded_data
data = decoded_data
source = {}
source['callsign'] = "ROCK"
source['ssid'] = 7
source['timestamp'] = data['transmit_time']
source['type'] = 'json'
data = decoded_data
source['data'] = data

# accept upload data
Expand Down

0 comments on commit 0648b63

Please sign in to comment.