This commit is contained in:
Dave Horton
2025-01-09 16:06:01 -05:00
parent 6bad1a22f3
commit f3690ef5ce
3 changed files with 14 additions and 5 deletions

View File

@@ -748,6 +748,13 @@ class TaskDial extends Task {
if (this.epOther) {
this.epOther.api('uuid_break', this.epOther.uuid);
this.epOther.bridge(sd.ep);
/**
* wait until the endpoints are bridged before apply the send_silence_when_idle
* audiocodes webrtc client somehow inserts massive latency if we send silence
* and then bridge A and B.
*/
this.ep.set('send_silence_when_idle', -1);
}
this.bridged = true;
}