Fix recurring events in google calendar (#67355)

pull/67365/head
Allen Porter 2022-02-27 19:56:24 -08:00 committed by GitHub
parent bafa99fe3e
commit a375a4e16e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

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"))