Skip to content

Commit

Permalink
Correct source json key (#933)
Browse files Browse the repository at this point in the history
Should be `srcList` not `sourceList`
  • Loading branch information
taclane authored Mar 9, 2024
1 parent f63ceee commit 031c28d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trunk-recorder/call_concluder/call_concluder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ int create_call_json(Call_Data_t& call_info) {
}
// Add sources / tags
for (std::size_t i = 0; i < call_info.transmission_source_list.size(); i++) {
json_data["sourceList"] += {
json_data["srcList"] += {
{"src", int(call_info.transmission_source_list[i].source)},
{"time", call_info.transmission_source_list[i].time},
{"pos", call_info.transmission_source_list[i].position},
Expand Down

0 comments on commit 031c28d

Please sign in to comment.