fix: Events on Google Calendar dont have mandatory titles like Frappe

This commit is contained in:
Gavin D'souza 2025-03-17 19:28:08 +01:00
parent 08657d58a3
commit fe59e3914b
No known key found for this signature in database
GPG key ID: 3A7BF4D4340DE6F7

View file

@ -374,7 +374,7 @@ def insert_event_to_calendar(account, event, recurrence=None):
"""
calendar_event = {
"doctype": "Event",
"subject": event.get("summary"),
"subject": event.get("summary") or "No Title",
"description": event.get("description"),
"google_calendar_event": 1,
"google_calendar": account.name,