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

Commit bb0f8aa1 authored by Tyler Gunn's avatar Tyler Gunn Committed by Automerger Merge Worker
Browse files

Merge "Fix issue where verstat is not propagated to Telecom." am: c7f0f145 am: 30d7074a

Change-Id: Idd1ff8dc7067e9be8c0e0a7f83c0902fc5e80265
parents 2e0e2b87 30d7074a
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -849,6 +849,19 @@ public class Call implements CreateConnectionResponse, EventManager.Loggable,

        s.append("\n\tTo address: ");
        s.append(Log.piiHandle(getHandle()));
        if (isIncoming()) {
            switch (mCallerNumberVerificationStatus) {
                case Connection.VERIFICATION_STATUS_FAILED:
                    s.append(" Verstat: fail");
                    break;
                case Connection.VERIFICATION_STATUS_NOT_VERIFIED:
                    s.append(" Verstat: not");
                    break;
                case Connection.VERIFICATION_STATUS_PASSED:
                    s.append(" Verstat: pass");
                    break;
            }
        }
        s.append(" Presentation: ");
        switch (getHandlePresentation()) {
            case TelecomManager.PRESENTATION_ALLOWED: