Skip to content

Commit

Permalink
Merge pull request #4016 from vector-im/feature/fga/fix_dtmf
Browse files Browse the repository at this point in the history
Fix DTMF not working #4015
  • Loading branch information
bmarty authored Sep 15, 2021
2 parents 73692bc + 0460a48 commit c1b14bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.d/4015.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix DTMF not working
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ class CallDialPadBottomSheet : VectorBaseBottomSheetDialogFragment<BottomSheetCa

private inner class DialPadFragmentCallbackWrapper(val callback: DialPadFragment.Callback?): DialPadFragment.Callback {

override fun onDigitAppended(digit: String) {
callback?.onDigitAppended(digit)
}

override fun onOkClicked(formatted: String?, raw: String?) {
callback?.onOkClicked(formatted, raw)
dismiss()
Expand Down

0 comments on commit c1b14bd

Please sign in to comment.