Skip to content

Commit

Permalink
#25 make callsing upper
Browse files Browse the repository at this point in the history
  • Loading branch information
F4FXL committed Mar 25, 2022
1 parent c10c715 commit 4715ca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DGWVoiceTransmit/VoiceTransmit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ bool parseCLIArgs(int argc, const char * argv[], std::string& repeater, std::vec
if(positionalArgs.size() < 2U)
return false;

repeater.assign(boost::replace_all_copy(positionalArgs[0], "_", " "));
repeater.assign(boost::replace_all_copy(boost::to_upper_copy(positionalArgs[0]), "_", " "));
files.assign(positionalArgs.begin() + 1, positionalArgs.end());

if(namedArgs.count("text") > 0U) {
Expand Down

0 comments on commit 4715ca4

Please sign in to comment.