Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

call_info update #867

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions trunk-recorder/call_concluder/call_concluder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ Call_Data_t Call_Concluder::create_call_data(Call *call, System *sys, Config con
call_info.tdma_slot = call->get_tdma_slot();
call_info.phase2_tdma = call->get_phase2_tdma();
call_info.transmission_list = call->get_transmissions();
call_info.sys_num = sys->get_sys_num();
call_info.short_name = sys->get_short_name();
call_info.upload_script = sys->get_upload_script();
call_info.audio_archive = sys->get_audio_archive();
Expand Down
1 change: 1 addition & 0 deletions trunk-recorder/global_structs.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ struct Call_Data_t {
char converted[300];
int min_transmissions_removed;

int sys_num;
std::string short_name;
std::string upload_script;
std::string audio_type;
Expand Down
Loading