fix: Calendar Cache sync page (#24182)

* fix

* fix calendar sync page
This commit is contained in:
Volnei Munhoz
2025-09-30 17:10:51 +01:00
committed by GitHub
parent 094595c435
commit e2b2a184c8
@@ -136,6 +136,9 @@ export class GoogleCalendarSubscriptionAdapter implements ICalendarSubscriptionP
syncToken = data.nextSyncToken || syncToken;
pageToken = data.nextPageToken ?? null;
if (pageToken) {
params.pageToken = pageToken;
}
events.push(...(data.items || []));
} while (pageToken);