Skip to content

Commit e2b2a18

Browse files
authored
fix: Calendar Cache sync page (calcom#24182)
* fix * fix calendar sync page
1 parent 094595c commit e2b2a18

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

packages/features/calendar-subscription/adapters/GoogleCalendarSubscription.adapter.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,9 @@ export class GoogleCalendarSubscriptionAdapter implements ICalendarSubscriptionP
136136

137137
syncToken = data.nextSyncToken || syncToken;
138138
pageToken = data.nextPageToken ?? null;
139+
if (pageToken) {
140+
params.pageToken = pageToken;
141+
}
139142

140143
events.push(...(data.items || []));
141144
} while (pageToken);

0 commit comments

Comments
 (0)