Merge "Update BT state when BT devices are disconnected." into mnc-dev
diff --git a/src/com/android/server/telecom/BluetoothManager.java b/src/com/android/server/telecom/BluetoothManager.java
index f74349f..aec0d3e 100644
--- a/src/com/android/server/telecom/BluetoothManager.java
+++ b/src/com/android/server/telecom/BluetoothManager.java
@@ -42,11 +42,14 @@
                 public void onServiceConnected(int profile, BluetoothProfile proxy) {
                     mBluetoothHeadset = (BluetoothHeadset) proxy;
                     Log.v(this, "- Got BluetoothHeadset: " + mBluetoothHeadset);
+                    updateBluetoothState();
                 }
 
                 @Override
                 public void onServiceDisconnected(int profile) {
                     mBluetoothHeadset = null;
+                    Log.v(this, "Lost BluetoothHeadset: " + mBluetoothHeadset);
+                    updateBluetoothState();
                 }
            };