Skip to content

Commit 0edf06c

Browse files
committed
remove messages to attendees/speakers about "corridor" room
1 parent 0b54630 commit 0edf06c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Scheduler.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ export class Scheduler {
388388
);
389389
} else if (task.type === ScheduledTaskType.TalkEnd) {
390390
if (confTalk !== undefined) {
391-
await this.client.sendHtmlText(confTalk.roomId, `<h3>Your talk has ended - opening up this room to all attendees.</h3><p>@room - They won't see the history in this room.</p>`);
391+
await this.client.sendHtmlText(confTalk.roomId, `<h3>Your talk has ended.</h3>`);
392392
const widget = await LiveWidget.forTalk(confTalk, this.client, this.config.livestream.widgetAvatar, this.config.webserver.publicBaseUrl);
393393
const layout = await LiveWidget.layoutForTalk(widget, null);
394394
const scoreboard = await LiveWidget.scoreboardForTalk(confTalk, this.client, this.conference, this.config.livestream.widgetAvatar, this.config.webserver.publicBaseUrl);
@@ -397,7 +397,7 @@ export class Scheduler {
397397
await this.client.sendStateEvent(confTalk.roomId, layout.type, layout.state_key, layout.content);
398398
await makeRoomPublic(confTalk.roomId, this.client);
399399
const talkPill = await MentionPill.forRoom(confTalk.roomId, this.client);
400-
await this.client.sendHtmlText(confAud.roomId, `<h3>The talk will end shortly</h3><p>If the speakers are available, they'll be hanging out in ${talkPill.html}</p>`);
400+
await this.client.sendHtmlText(confAud.roomId, `<h3>The talk will end shortly</h3>`);
401401
} else {
402402
await this.client.sendHtmlText(confAud.roomId, `<h3>The talk will end shortly</h3>`);
403403
}
@@ -442,7 +442,7 @@ export class Scheduler {
442442
await this.scoreboard.showQACountdown(confAud.roomId, task.talk.qa_startTime!);
443443
} else if (task.type === ScheduledTaskType.TalkEnd5M) {
444444
if (confTalk !== undefined) {
445-
await this.client.sendHtmlText(confTalk.roomId, `<h3>Your talk ends in about 5 minutes</h3><p>The next talk will start automatically after yours. In 5 minutes, this room will be opened up for anyone to join. They will not be able to see history.</p>`);
445+
await this.client.sendHtmlText(confTalk.roomId, `<h3>Your talk ends in about 5 minutes</h3><p>The next talk will start automatically after yours.</p>`);
446446
}
447447
await this.client.sendHtmlText(confAud.roomId, `<h3>This talk ends in about 5 minutes</h3>` + (task.talk.qa_startTime !== null ? `<p>Ask questions here for the speakers!</p>`: ''));
448448
} else if (task.type === ScheduledTaskType.TalkLivestreamEnd1M && confTalk !== undefined) {

0 commit comments

Comments
 (0)