From 1a7de55da8e0ee29d41192722e0a595d507413be Mon Sep 17 00:00:00 2001 From: chiko Date: Sun, 2 Nov 2025 21:11:37 +0000 Subject: [PATCH] Prints "Optime" and a Diff to Optime for a Events thats not on Optime --- src/component/event/events.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/component/event/events.ts b/src/component/event/events.ts index 4dffdfd..59ea846 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 && 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}`,