A previous change introduced the regression that we don't let
initialization syncs run - this reverts the original logic.
bug:
31056110
Change-Id: I4382af1284a3296c63ab773aa4a52df01deeb853
}
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;
}