gather verb should clean dtmf listerner even dtmfBargein=false (#686)

This commit is contained in:
Hoan Luu Huu
2024-03-24 03:01:41 +07:00
committed by GitHub
parent 75b6f89e0c
commit 65c241bcd1

View File

@@ -965,10 +965,8 @@ class TaskGather extends SttTask {
// If bargin is false and ws application return ack to verb:hook // If bargin is false and ws application return ack to verb:hook
// the gather should not play any audio // the gather should not play any audio
this._killAudio(this.cs); this._killAudio(this.cs);
// Clear dtmf event // Clear dtmf events, to avoid any case can leak the listener, just clean it
if (this.dtmfBargein) {
this.ep.removeAllListeners('dtmf'); this.ep.removeAllListeners('dtmf');
}
clearTimeout(this.interDigitTimer); clearTimeout(this.interDigitTimer);
this._clearTimer(); this._clearTimer();
this._clearFastRecognitionTimer(); this._clearFastRecognitionTimer();