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

Commit c7f0f145 authored by Tyler Gunn's avatar Tyler Gunn Committed by Gerrit Code Review
Browse files

Merge "Fix issue where verstat is not propagated to Telecom."

parents 62f0538c 81c596b0
Loading
Loading
Loading
Loading
+13 −0
Original line number Original line Diff line number Diff line
@@ -849,6 +849,19 @@ public class Call implements CreateConnectionResponse, EventManager.Loggable,


        s.append("\n\tTo address: ");
        s.append("\n\tTo address: ");
        s.append(Log.piiHandle(getHandle()));
        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: ");
        s.append(" Presentation: ");
        switch (getHandlePresentation()) {
        switch (getHandlePresentation()) {
            case TelecomManager.PRESENTATION_ALLOWED:
            case TelecomManager.PRESENTATION_ALLOWED: