bugfix: establish conference start time for parties that have been waiting

This commit is contained in:
Dave Horton
2021-09-16 13:08:15 -04:00
parent 05c5319cbc
commit 0d6cb8a2b3

View File

@@ -371,6 +371,7 @@ class Conference extends Task {
*/
notifyStartConference(cs, opts) {
this.logger.info({opts}, `Conference:notifyStartConference: conference ${this.confName} has now started`);
this.conferenceStartTime = new Date();
this.emitter.emit('join', opts);
}