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 14, 2024
1 parent 2150f9a commit 04d5bae
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -428,9 +428,9 @@ export class GoogleCalendarSyncService {
await dataSourceMetadata?.transaction(async (transactionManager) => {
startTime = Date.now();

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

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

startTime = Date.now();

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

Expand Down

0 comments on commit 04d5bae

Please sign in to comment.