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

Commit 3f1383b5 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." into rvc-dev am: 41dbedc8

Change-Id: Icae06f37c21edc6f48de67ebc73723ba8e50ea4a
parents cfda60e1 41dbedc8
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -847,6 +847,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: