Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dfed1c73 authored by Svet Ganov's avatar Svet Ganov Committed by Svetoslav Ganov
Browse files

Fix a regression in sync manager

A previous change introduced the regression that we don't let
initialization syncs run - this reverts the original logic.

bug:31056110

Change-Id: I4382af1284a3296c63ab773aa4a52df01deeb853
parent 22ad9a31
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
            }