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

Commit a70a97cd authored by Hemant Gupta's avatar Hemant Gupta Committed by android-build-merger
Browse files

Merge "PBAP: Update intent parameters for connection." am: 75b7ef2a am: 59160d0b am: 73b74563

am: dc0ce7e1

Change-Id: Ic413a56b057807d1c2c11b323f865bc73f010a34
parents 70303c91 dc0ce7e1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -685,8 +685,8 @@ public class BluetoothPbapService extends ProfileService {
            int prevState = mState;
            mState = state;
            Intent intent = new Intent(BluetoothPbap.PBAP_STATE_CHANGED_ACTION);
            intent.putExtra(BluetoothPbap.PBAP_PREVIOUS_STATE, prevState);
            intent.putExtra(BluetoothPbap.PBAP_STATE, mState);
            intent.putExtra(BluetoothProfile.EXTRA_PREVIOUS_STATE, prevState);
            intent.putExtra(BluetoothProfile.EXTRA_STATE, mState);
            intent.putExtra(BluetoothDevice.EXTRA_DEVICE, mRemoteDevice);
            sendBroadcast(intent, BLUETOOTH_PERM);
        }