summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/com/android/bluetooth/btservice/BondStateMachine.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/android/bluetooth/btservice/BondStateMachine.java b/src/com/android/bluetooth/btservice/BondStateMachine.java
index 927040222..f10d32571 100644
--- a/src/com/android/bluetooth/btservice/BondStateMachine.java
+++ b/src/com/android/bluetooth/btservice/BondStateMachine.java
@@ -563,7 +563,8 @@ final class BondStateMachine extends StateMachine {
}
}
- if (newState == BluetoothDevice.BOND_BONDED ) {
+ if ((newState == BluetoothDevice.BOND_BONDED )
+ ||(newState == BluetoothDevice.BOND_NONE)){
mAdapterProperties.updateSdpProgress(device, true /* SDP Completed */);
}
Intent intent = new Intent(BluetoothDevice.ACTION_BOND_STATE_CHANGED);