Fixing Outlook sending issue.

This commit is contained in:
Burak Kaan Köse
2024-06-11 22:48:18 +02:00
parent 0e9fd4373e
commit e47e3d936b
3 changed files with 17 additions and 2 deletions
@@ -148,6 +148,12 @@ namespace Wino.Core.Synchronizers
await synchronizationSemaphore.WaitAsync(activeSynchronizationCancellationToken);
// Let servers to finish their job. Sometimes the servers doesn't respond immediately.
if (options.Type == SynchronizationType.ExecuteRequests)
{
await Task.Delay(2000);
}
// Start the internal synchronization.
var synchronizationResult = await SynchronizeInternalAsync(options, activeSynchronizationCancellationToken).ConfigureAwait(false);