Fix a regression in sync manager am: dfed1c73ec

am: a09f3790ac

Change-Id: Icd78c91e12a672a00f3ce660abb318997382fd64
This commit is contained in:
Svet Ganov
2016-08-26 01:08:05 +00:00
committed by android-build-merger

View File

@@ -2853,9 +2853,9 @@ public class SyncManager {
}
return SYNC_OP_STATE_INVALID_NO_ACCOUNT_ACCESS;
}
if (state != AuthorityInfo.SYNCABLE) {
if (state == AuthorityInfo.NOT_SYNCABLE) {
if (isLoggable) {
Slog.v(TAG, " Dropping sync operation: isSyncable != SYNCABLE");
Slog.v(TAG, " Dropping sync operation: isSyncable == NOT_SYNCABLE");
}
return SYNC_OP_STATE_INVALID;
}