Prints "Optime" and a Diff to Optime for a Events thats not on Optime

This commit is contained in:
2025-11-02 21:11:37 +00:00
parent 2c34fece2c
commit 1a7de55da8

View File

@@ -220,7 +220,7 @@ export class Event implements TEventEntity {
const body = [
`Title: ${this.title}`,
`Date: ${this.date_at}`,
`Time: ${this.get_time_start()}${ TimeDiff && TimeDiff == "00:00" ? ` (Optime ${TimeDiff})` : "" }`,
`Time: ${this.get_time_start()} (OP Time${ TimeDiff != "00:00" ? ` ${TimeDiff}` : "" })`,
`Type: ${ TEventType[ this.event_type ] }`,
`Location: ${this.location}`,
`By: ${this.posted_by}`,