Skip to content

Commit

Permalink
fix: missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
magrinj committed Jun 12, 2024
1 parent b253c33 commit 8ea1c9a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -424,9 +424,9 @@ export class GoogleCalendarSyncService {
dataSourceMetadata?.transaction(async (transactionManager) => {
startTime = Date.now();

await this.calendarEventRepository.saveCalendarEvents(
await this.calendarEventRepository.save(
eventsToSave,
workspaceId,
{},
transactionManager,
);

Expand All @@ -440,9 +440,9 @@ export class GoogleCalendarSyncService {

startTime = Date.now();

await this.calendarEventRepository.updateCalendarEvents(
await this.calendarChannelRepository.save(
eventsToUpdate,
workspaceId,
{},
transactionManager,
);

Expand Down

0 comments on commit 8ea1c9a

Please sign in to comment.