From 020c84d2df0de019665aea84a2de7b550790e514 Mon Sep 17 00:00:00 2001 From: Hoan Luu Huu <110280845+xquanluu@users.noreply.github.com> Date: Wed, 14 Aug 2024 18:19:00 +0700 Subject: [PATCH] rest call session does not handle for RE-INVITE (#863) --- lib/session/rest-call-session.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/session/rest-call-session.js b/lib/session/rest-call-session.js index 35a3382f..bf8513b9 100644 --- a/lib/session/rest-call-session.js +++ b/lib/session/rest-call-session.js @@ -46,6 +46,7 @@ class RestCallSession extends CallSession { this.dlg = dlg; dlg.on('destroy', this._callerHungup.bind(this)); dlg.on('refer', this._onRefer.bind(this)); + dlg.on('modify', this._onReinvite.bind(this)); this.wrapDialog(dlg); }