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

Commit 7fcd33f9 authored by Jack Yu's avatar Jack Yu Committed by Android (Google) Code Review
Browse files

Merge "Fixed building the incorrect phone account using iccid" into udc-dev

parents 560bc9e3 6d0a5032
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -228,10 +228,10 @@ public class MissedIncomingCallSmsFilter {
        return false;
    }

    // Create phone account. The logic is copied from PhoneUtils.makePstnPhoneAccountHandle.
    // Create phone account. The logic is copied from PhoneUtils.makePstnPhoneAccountHandleWithId.
    private static PhoneAccountHandle makePstnPhoneAccountHandle(Phone phone) {
        return new PhoneAccountHandle(PSTN_CONNECTION_SERVICE_COMPONENT,
                String.valueOf(phone.getFullIccSerialNumber()));
                String.valueOf(phone.getSubId()), phone.getUserHandle());
    }

    /**