fix: Events on Google Calendar dont have mandatory titles like Frappe
This commit is contained in:
parent
08657d58a3
commit
fe59e3914b
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue