Skip to content

Commit bf3992a

Browse files
committed
Fix unscheduling deleted Google Calendar events
1 parent b854bdd commit bf3992a

4 files changed

Lines changed: 168 additions & 73 deletions

File tree

.changeset/optional-link-title.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@plotday/twister": patch
3+
---
4+
5+
Changed: `NewLinkWithNotes.title` is now optional — omit to preserve existing title on upsert

connectors/google-calendar/src/google-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ export function transformGoogleEvent(
372372
const isCancelled = event.status === "cancelled";
373373

374374
const result: TransformedEvent = {
375-
title: event.summary || (isCancelled ? "Cancelled event" : ""),
375+
title: event.summary || "",
376376
meta: {
377377
id: event.id,
378378
calendarId: calendarId,

0 commit comments

Comments
 (0)