added support for conference verb

This commit is contained in:
Dave Horton
2020-04-27 11:25:39 -04:00
parent d31c53d383
commit 8ee590172b
27 changed files with 888 additions and 133 deletions

View File

@@ -36,7 +36,7 @@ class TaskGather extends Task {
}
async exec(cs, ep) {
super.exec(cs);
await super.exec(cs);
this.ep = ep;
try {
@@ -71,8 +71,8 @@ class TaskGather extends Task {
ep.removeCustomEventListener(TranscriptionEvents.EndOfUtterance);
}
kill() {
super.kill();
kill(cs) {
super.kill(cs);
this._killAudio();
this._resolve('killed');
}