Register and unregister receiver with same context

Fixes #7267
pull/1/head
Moxie Marlinspike 7 years ago
parent 13434d620c
commit 303b98b7c2

@ -54,9 +54,9 @@ public class BluetoothStateManager {
requestHeadsetProxyProfile();
context.registerReceiver(bluetoothConnectionReceiver, new IntentFilter(BluetoothHeadset.ACTION_CONNECTION_STATE_CHANGED));
this.context.registerReceiver(bluetoothConnectionReceiver, new IntentFilter(BluetoothHeadset.ACTION_CONNECTION_STATE_CHANGED));
Intent sticky = context.registerReceiver(bluetoothScoReceiver, new IntentFilter(getScoChangeIntent()));
Intent sticky = this.context.registerReceiver(bluetoothScoReceiver, new IntentFilter(getScoChangeIntent()));
if (sticky != null) {
bluetoothScoReceiver.onReceive(context, sticky);

Loading…
Cancel
Save