From 6b354eadbfdde6e589a59da00f1730f9737d3cda Mon Sep 17 00:00:00 2001 From: Patrick Simpson Date: Wed, 21 Jun 2017 16:07:32 +0200 Subject: [PATCH] Fixed disabled sync stall test --- .../AcaciaZPushPlugin/Features/SyncState/FeatureSyncState.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AcaciaZPushPlugin/AcaciaZPushPlugin/Features/SyncState/FeatureSyncState.cs b/src/AcaciaZPushPlugin/AcaciaZPushPlugin/Features/SyncState/FeatureSyncState.cs index 7519300..2366ef6 100644 --- a/src/AcaciaZPushPlugin/AcaciaZPushPlugin/Features/SyncState/FeatureSyncState.cs +++ b/src/AcaciaZPushPlugin/AcaciaZPushPlugin/Features/SyncState/FeatureSyncState.cs @@ -504,8 +504,8 @@ namespace Acacia.Features.SyncState string syncId = (string)inbox.GetProperty(OutlookConstants.PR_ZPUSH_SYNC_ID); // If it's syncing, it's not stalled - //if (syncId != null && syncId != "0") - // return; + if (syncId != null && syncId != "0") + return; SyncSession sync = account.GetFeatureData(this, null);