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

Commit 44f5783c authored by Tyler Gunn's avatar Tyler Gunn Committed by android-build-merger
Browse files

Merge "Ensure IMS conference participants have number presentation set." into...

Merge "Ensure IMS conference participants have number presentation set." into oc-dr1-dev am: a3198af0
am: f9048005

Change-Id: Ie8ed5a86d2befce2c58d9a5d16101df01f6e9a74
parents b9bc8c4c f9048005
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
@@ -660,6 +660,23 @@ public class Call implements CreateConnectionResponse, EventManager.Loggable {

        s.append("\n\tTo address: ");
        s.append(Log.piiHandle(getHandle()));
        s.append(" Presentation: ");
        switch (getHandlePresentation()) {
            case TelecomManager.PRESENTATION_ALLOWED:
                s.append("Allowed");
                break;
            case TelecomManager.PRESENTATION_PAYPHONE:
                s.append("Payphone");
                break;
            case TelecomManager.PRESENTATION_RESTRICTED:
                s.append("Restricted");
                break;
            case TelecomManager.PRESENTATION_UNKNOWN:
                s.append("Unknown");
                break;
            default:
                s.append("<undefined>");
        }
        s.append("\n");
        return s.toString();
    }
+1 −0
Original line number Diff line number Diff line
@@ -2687,6 +2687,7 @@ public class CallsManager extends Call.ListenerBase
                "existing connection");
        call.setConnectionCapabilities(connection.getConnectionCapabilities());
        call.setConnectionProperties(connection.getConnectionProperties());
        call.setHandle(connection.getHandle(), connection.getHandlePresentation());
        call.setCallerDisplayName(connection.getCallerDisplayName(),
                connection.getCallerDisplayNamePresentation());
        call.addListener(this);