initial changes to support websockets as an alternative to webhooks

This commit is contained in:
Dave Horton
2022-02-21 07:55:27 -05:00
parent 47478fd409
commit 3f9a061bbf
21 changed files with 604 additions and 47 deletions

View File

@@ -357,7 +357,7 @@ class SingleDialer extends Emitter {
this.callInfo.updateCallStatus(callStatus, sipStatus);
if (typeof duration === 'number') this.callInfo.duration = duration;
try {
this.requestor.request(this.application.call_status_hook, this.callInfo.toJSON());
this.requestor.request('call:status', this.application.call_status_hook, this.callInfo.toJSON());
} catch (err) {
this.logger.info(err, `SingleDialer:_notifyCallStatusChange error sending ${callStatus} ${sipStatus}`);
}