diff --git a/src/commands/ScheduleCommand.ts b/src/commands/ScheduleCommand.ts
index 982156d..d9c126f 100644
--- a/src/commands/ScheduleCommand.ts
+++ b/src/commands/ScheduleCommand.ts
@@ -44,8 +44,8 @@ export class ScheduleCommand implements ICommand {
html = "…
";
}
- const hasRoomIndicator = hasTalkRoom ? '(has talk room)' : '(no talk room)';
- html += `- ${formattedTimestamp}: ${task.type} on ${task.talk.title} ${hasRoomIndicator} (
${task.id}
) ${taskStart.fromNow()} `;
+ const hasRoomIndicator = hasTalkRoom ? 'has talk room' : 'no talk room';
+ html += `- ${formattedTimestamp}: ${task.type} on ${task.talk.title} (
${task.id}
, ${hasRoomIndicator}) ${taskStart.fromNow()} `;
}
html += "
";
await this.client.sendHtmlNotice(roomId, html);