diff --git a/src/component/event/events.ts b/src/component/event/events.ts index 84b84fb..4dffdfd 100644 --- a/src/component/event/events.ts +++ b/src/component/event/events.ts @@ -220,7 +220,7 @@ export class Event implements TEventEntity { const body = [ `Title: ${this.title}`, `Date: ${this.date_at}`, - `Time: ${this.get_time_start()}${ TimeDiff ? ` (Optime ${TimeDiff})` : "" }`, + `Time: ${this.get_time_start()}${ TimeDiff && TimeDiff == "00:00" ? ` (Optime ${TimeDiff})` : "" }`, `Type: ${ TEventType[ this.event_type ] }`, `Location: ${this.location}`, `By: ${this.posted_by}`,