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

Commit cf36f6ff authored by Devin Kim's avatar Devin Kim Committed by android-build-merger
Browse files

Do not send AT+CHLD=? if the 3-way call feature is not supported

am: 4b2f2c11

* commit '4b2f2c11':
  Do not send AT+CHLD=? if the 3-way call feature is not supported
parents f9d7736d 4b2f2c11
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -594,7 +594,8 @@ void bta_hf_client_slc_seq(BOOLEAN error)
        break;

    case BTA_HF_CLIENT_AT_CMER:
        if (bta_hf_client_cb.scb.peer_features & BTA_HF_CLIENT_PEER_FEAT_3WAY)
        if (bta_hf_client_cb.scb.peer_features & BTA_HF_CLIENT_PEER_FEAT_3WAY
               && bta_hf_client_cb.scb.features & BTA_HF_CLIENT_FEAT_3WAY)
        {
            bta_hf_client_send_at_chld('?', 0);
        }