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

Commit 7243bacd authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Dialing phone state should update active sub" into sc-v2-dev

parents 9e23d9d3 cde6691a
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -215,7 +215,9 @@ class GnssNetworkConnectivityHandler {
        }
        @Override
        public void onPreciseCallStateChanged(PreciseCallState state) {
            if (state.PRECISE_CALL_STATE_ACTIVE == state.getForegroundCallState()) {
            if (PreciseCallState.PRECISE_CALL_STATE_ACTIVE == state.getForegroundCallState()
                    || PreciseCallState.PRECISE_CALL_STATE_DIALING
                    == state.getForegroundCallState()) {
                mActiveSubId = mSubId;
                if (DEBUG) Log.d(TAG, "mActiveSubId: " + mActiveSubId);
            }