diff --git a/src/Scheduler.ts b/src/Scheduler.ts
index a3b1a6b..e53e8b0 100644
--- a/src/Scheduler.ts
+++ b/src/Scheduler.ts
@@ -388,7 +388,7 @@ export class Scheduler {
);
} else if (task.type === ScheduledTaskType.TalkEnd) {
if (confTalk !== undefined) {
- await this.client.sendHtmlText(confTalk.roomId, `
Your talk has ended - opening up this room to all attendees.
@room - They won't see the history in this room.
`);
+ await this.client.sendHtmlText(confTalk.roomId, `Your talk has ended.
`);
const widget = await LiveWidget.forTalk(confTalk, this.client, this.config.livestream.widgetAvatar, this.config.webserver.publicBaseUrl);
const layout = await LiveWidget.layoutForTalk(widget, null);
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 {
await this.client.sendStateEvent(confTalk.roomId, layout.type, layout.state_key, layout.content);
await makeRoomPublic(confTalk.roomId, this.client);
const talkPill = await MentionPill.forRoom(confTalk.roomId, this.client);
- await this.client.sendHtmlText(confAud.roomId, `The talk will end shortly
If the speakers are available, they'll be hanging out in ${talkPill.html}
`);
+ await this.client.sendHtmlText(confAud.roomId, `The talk will end shortly
`);
} else {
await this.client.sendHtmlText(confAud.roomId, `The talk will end shortly
`);
}
@@ -442,7 +442,7 @@ export class Scheduler {
await this.scoreboard.showQACountdown(confAud.roomId, task.talk.qa_startTime!);
} else if (task.type === ScheduledTaskType.TalkEnd5M) {
if (confTalk !== undefined) {
- await this.client.sendHtmlText(confTalk.roomId, `Your talk ends in about 5 minutes
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.
`);
+ await this.client.sendHtmlText(confTalk.roomId, `Your talk ends in about 5 minutes
The next talk will start automatically after yours.
`);
}
await this.client.sendHtmlText(confAud.roomId, `This talk ends in about 5 minutes
` + (task.talk.qa_startTime !== null ? `Ask questions here for the speakers!
`: ''));
} else if (task.type === ScheduledTaskType.TalkLivestreamEnd1M && confTalk !== undefined) {