diff --git a/packages/twenty-server/src/modules/messaging/message-import-manager/services/messaging-import-exception-handler.service.ts b/packages/twenty-server/src/modules/messaging/message-import-manager/services/messaging-import-exception-handler.service.ts index dc3fa1e16f9..211d1902a89 100644 --- a/packages/twenty-server/src/modules/messaging/message-import-manager/services/messaging-import-exception-handler.service.ts +++ b/packages/twenty-server/src/modules/messaging/message-import-manager/services/messaging-import-exception-handler.service.ts @@ -249,31 +249,6 @@ export class MessageImportExceptionHandlerService { messageChannel: Pick, workspaceId: string, ): Promise { - if (syncStep === MessageImportSyncStep.MESSAGE_LIST_FETCH) { - await this.messageChannelSyncStatusService.markAsFailed( - [messageChannel.id], - workspaceId, - MessageChannelSyncStatus.FAILED_UNKNOWN, - ); - - this.exceptionHandlerService.captureExceptions( - [ - new Error( - 'Not Found exception occurred while fetching message list, which should never happen', - ), - ], - { - additionalData: { - messageChannelId: messageChannel.id, - syncStep, - }, - workspace: { id: workspaceId }, - }, - ); - - return; - } - await this.messageChannelSyncStatusService.resetAndMarkAsMessagesListFetchPending( [messageChannel.id], workspaceId,