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

Commit 51e12882 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "SyncManager: Fix SyncManager null pointer issue under QuickBoot"

parents 0ae4a5d5 807ac39c
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -217,6 +217,9 @@ public class SyncManager {
    private BroadcastReceiver mBootCompletedReceiver = new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {
            boolean fromQuickBoot = intent.getBooleanExtra("from_quickboot", false);
            if (fromQuickBoot) return;

            mSyncHandler.onBootCompleted();
        }
    };