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

Commit a9fd04f9 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "BT: Align outgoing call states in BT with Telephony"

parents 92100f1c 4f926dae
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1183,7 +1183,7 @@ public final class BluetoothPhoneServiceImpl {
        int bluetoothCallState = CALL_STATE_IDLE;
        if (ringingCall != null) {
            bluetoothCallState = CALL_STATE_INCOMING;
        } else if (dialingCall != null) {
        } else if (dialingCall != null && dialingCall.getState() == CallState.DIALING) {
            bluetoothCallState = CALL_STATE_ALERTING;
        }
        return bluetoothCallState;