Skip to content

Commit

Permalink
Fix for #606
Browse files Browse the repository at this point in the history
This adds an OR when setting the emergency flag.
  • Loading branch information
JoeGilkey committed Aug 28, 2022
1 parent 63505af commit 552c1c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trunk-recorder/call_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ bool Call_impl::get_encrypted() {
}

void Call_impl::set_emergency(bool m) {
emergency = m;
emergency |= m;
}

bool Call_impl::get_emergency() {
Expand Down

0 comments on commit 552c1c7

Please sign in to comment.