Merge pull request #5376 from vector-im/langleyd/5375-fix-dtmf

App: Fix DTMF
This commit is contained in:
David Langley
2022-01-12 11:36:18 +00:00
committed by GitHub
2 changed files with 2 additions and 3 deletions
+1 -3
View File
@@ -664,9 +664,7 @@ CallAudioRouteMenuViewDelegate>
{
return;
}
BOOL result = [self.mxCall sendDTMF:digit
duration:0
interToneGap:0];
BOOL result = [self.mxCall sendDTMF:digit];
MXLogDebug(@"[CallViewController] Sending DTMF tones %@", result ? @"succeeded": @"failed");
}
+1
View File
@@ -0,0 +1 @@
Fixes DTMF(dial tones) during voice calls.