Fix recurring events in google calendar (#67355)

This commit is contained in:
Allen Porter
2022-02-27 19:56:24 -08:00
committed by GitHub
parent bafa99fe3e
commit a375a4e16e

View File

@@ -82,5 +82,7 @@ class GoogleCalendarService:
q=search,
maxResults=EVENT_PAGE_SIZE,
pageToken=page_token,
singleEvents=True, # Flattens recurring events
orderBy="startTime",
).execute()
return (result["items"], result.get("nextPageToken"))