fix MailboxConcurrency And email format without @ (#11133)

This commit is contained in:
Guillim
2025-03-25 11:40:58 +01:00
committed by GitHub
parent de1f8a4706
commit 96c61df007
5 changed files with 16 additions and 24 deletions

View File

@ -58,14 +58,13 @@ export class CalendarEventImportErrorHandlerService {
break;
case CalendarEventImportDriverExceptionCode.UNKNOWN:
case CalendarEventImportDriverExceptionCode.UNKNOWN_NETWORK_ERROR:
default:
await this.handleUnknownException(
exception,
calendarChannel,
workspaceId,
);
break;
default:
throw exception;
}
}