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

Commit 2dcf8aba 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: ecc2dbae

* commit 'ecc2dbae':
  Do not send AT+CHLD=? if the 3-way call feature is not supported
parents fcdab2fe ecc2dbae
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -612,7 +612,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);
        }