diff --git a/packages/twenty-server/src/modules/calendar/calendar-event-import-manager/utils/is-sync-stale.util.ts b/packages/twenty-server/src/modules/calendar/calendar-event-import-manager/utils/is-sync-stale.util.ts index 9f5cff6823..35c857cc9d 100644 --- a/packages/twenty-server/src/modules/calendar/calendar-event-import-manager/utils/is-sync-stale.util.ts +++ b/packages/twenty-server/src/modules/calendar/calendar-event-import-manager/utils/is-sync-stale.util.ts @@ -4,7 +4,7 @@ import { CALENDAR_IMPORT_ONGOING_SYNC_TIMEOUT } from 'src/modules/calendar/calen export const isSyncStale = (syncStageStartedAt?: string | null): boolean => { if (!isDefined(syncStageStartedAt)) { - return false; + return true; } const syncStageStartedTime = new Date(syncStageStartedAt).getTime(); diff --git a/packages/twenty-server/src/modules/messaging/message-import-manager/utils/__tests__/is-sync-stale.util.spec.ts b/packages/twenty-server/src/modules/messaging/message-import-manager/utils/__tests__/is-sync-stale.util.spec.ts index 0770473919..20e6e2ad6f 100644 --- a/packages/twenty-server/src/modules/messaging/message-import-manager/utils/__tests__/is-sync-stale.util.spec.ts +++ b/packages/twenty-server/src/modules/messaging/message-import-manager/utils/__tests__/is-sync-stale.util.spec.ts @@ -24,16 +24,16 @@ describe('isSyncStale', () => { expect(result).toBe(false); }); - it('should return false if syncStageStartedAt is undefined', () => { + it('should return true if syncStageStartedAt is undefined', () => { const result = isSyncStale(undefined); - expect(result).toBe(false); + expect(result).toBe(true); }); - it('should return false if syncStageStartedAt is null', () => { + it('should return true if syncStageStartedAt is null', () => { const result = isSyncStale(null); - expect(result).toBe(false); + expect(result).toBe(true); }); it('should throw an error if syncStageStartedAt is invalid', () => { diff --git a/packages/twenty-server/src/modules/messaging/message-import-manager/utils/is-sync-stale.util.ts b/packages/twenty-server/src/modules/messaging/message-import-manager/utils/is-sync-stale.util.ts index 45661f5dd6..964c95f75d 100644 --- a/packages/twenty-server/src/modules/messaging/message-import-manager/utils/is-sync-stale.util.ts +++ b/packages/twenty-server/src/modules/messaging/message-import-manager/utils/is-sync-stale.util.ts @@ -4,7 +4,7 @@ import { MESSAGING_IMPORT_ONGOING_SYNC_TIMEOUT } from 'src/modules/messaging/mes export const isSyncStale = (syncStageStartedAt?: string | null): boolean => { if (!isDefined(syncStageStartedAt)) { - return false; + return true; } const syncStageStartedTime = new Date(syncStageStartedAt).getTime();