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

Commit 27d74299 authored by Grzegorz Kolodziejczyk's avatar Grzegorz Kolodziejczyk Committed by Gerrit Code Review
Browse files

Merge "csis: Ignore store of intents when CSIS service is inactive"

parents 74bf46ac 20c90d26
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -719,6 +719,11 @@ public class CsipSetCoordinatorServiceTest {
        @Override
        public void onReceive(Context context, Intent intent) {
            try {
                /* Ignore intent when service is inactive */
                if (mService == null) {
                    return;
                }

                BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
                // Use first device's queue in case of no device in the intent
                if (device == null) {