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

Commit b61f8672 authored by Tyler Gunn's avatar Tyler Gunn Committed by Android (Google) Code Review
Browse files

Merge "Fix phone account comparison in Telecom dumpsys." into rvc-d1-dev

parents b6db7d79 69e3886d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -855,7 +855,7 @@ public class Call implements CreateConnectionResponse, EventManager.Loggable,
        PhoneAccountHandle delegatePhoneAccountHandle = getDelegatePhoneAccountHandle();
        boolean isTargetSameAsRemote = targetPhoneAccountHandle != null
                && targetPhoneAccountHandle.equals(remotePhoneAccountHandle);
        if (delegatePhoneAccountHandle.equals(targetPhoneAccountHandle)) {
        if (Objects.equals(delegatePhoneAccountHandle, targetPhoneAccountHandle)) {
            s.append(">>>");
        }
        s.append("Target");