Skip to content

Commit

Permalink
Fix setting end-of-event false after it's true
Browse files Browse the repository at this point in the history
  • Loading branch information
sfgeorge committed Sep 11, 2019
1 parent a1a1936 commit 3732fd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/sippy_cup/media/dtmf_payload.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def end_of_event=(bool)
if bool
@flags |= END_OF_EVENT
else
@flags &= (0xf - END_OF_EVENT)
@flags &= ~END_OF_EVENT
end
end

Expand Down

0 comments on commit 3732fd2

Please sign in to comment.