Fix mistake.

This commit is contained in:
W1CDN 2023-12-13 21:25:30 -06:00
parent 0592f45af8
commit bfa7b91446

View File

@ -78,8 +78,8 @@ def main():
a['path'] = str(a['path']) a['path'] = str(a['path'])
# Process 3rd-party data # Process 3rd-party data
if 'subpacket' in a: if 'subpacket' in a:
a['subpacket'] = str(a['subpacket']) b = a['subpacket'] # make a copy
b = a['subpacket'] a['subpacket'] = str(a['subpacket']) # turn the original to a string
b['party'] = 3 b['party'] = 3
b['station_call'] = config['Settings']['station_call'] b['station_call'] = config['Settings']['station_call']
b['station_lat'] = config['Settings']['station_lat'] b['station_lat'] = config['Settings']['station_lat']