rest call session does not handle for RE-INVITE (#863)

This commit is contained in:
Hoan Luu Huu
2024-08-14 18:19:00 +07:00
committed by GitHub
parent 62d71d2504
commit 020c84d2df

View File

@@ -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);
}