From 0d6cb8a2b3360291ee1abdd10e2d8f6b741855fc Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Thu, 16 Sep 2021 13:08:15 -0400 Subject: [PATCH] bugfix: establish conference start time for parties that have been waiting --- lib/tasks/conference.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/tasks/conference.js b/lib/tasks/conference.js index 4a7a6200..9237df25 100644 --- a/lib/tasks/conference.js +++ b/lib/tasks/conference.js @@ -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); }