commit | 1efbe39d3e325566462f19c3fd80ead92c8e5581 | [log] [tgz] |
---|---|---|
author | Joseph Pirozzo <pirozzoj@google.com> | Wed Dec 11 17:04:47 2019 -0800 |
committer | Joseph Pirozzo <pirozzoj@google.com> | Mon Mar 16 19:10:50 2020 +0000 |
tree | 76c6d70330d5659d88b3bead24e23504fd3bff0f | |
parent | da1dc71cffb5fbb1e55186a20410e3d4f95246c3 [diff] |
HFP Client call status update When a call is terminating only inform telecom about its termination when there is an actual state change from the attached phone. Bug: 138753272 Test: start and end call, observe logs from HfpClientDeviceBlock that a closing call still in its previous state doesn't get destroyed prematurely. Change-Id: Ia5d105daa239f64b73c058d064c2e5181d862e4e (cherry picked from commit c1f83b71f34d101c023db154607c8ea50218214f) Merged-In: Ia5d105daa239f64b73c058d064c2e5181d862e4e Change-Id: I5d9d59c64bc8a79b397d2d4ef6feef1320345f42
diff --git a/src/com/android/bluetooth/hfpclient/connserv/HfpClientDeviceBlock.java b/src/com/android/bluetooth/hfpclient/connserv/HfpClientDeviceBlock.java index 05af73e..b567371 100644 --- a/src/com/android/bluetooth/hfpclient/connserv/HfpClientDeviceBlock.java +++ b/src/com/android/bluetooth/hfpclient/connserv/HfpClientDeviceBlock.java
@@ -224,7 +224,7 @@ if (DBG) { Log.d(mTAG, "prevConn " + prevConn.isClosing() + " new call " + newCall.getState()); } - if (prevConn.isClosing() + if (prevConn.isClosing() && prevConn.getCall().getState() != newCall.getState() && newCall.getState() != BluetoothHeadsetClientCall.CALL_STATE_TERMINATED) { return true; }