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

Commit 6784bfd5 authored by Tyler Gunn's avatar Tyler Gunn Committed by android-build-merger
Browse files

Ensure call direction for CEP participants is unknown to start.

am: 1b046945

Change-Id: Iffe607fe47a6dec485c3a59fdf67ab8302c407c8
parents 2e7a510e 1b046945
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -27,6 +27,7 @@ import android.net.Uri;
import android.os.Bundle;
import android.os.Bundle;
import android.os.Message;
import android.os.Message;
import android.os.Parcel;
import android.os.Parcel;
import android.telecom.Call;
import android.telecom.ConferenceParticipant;
import android.telecom.ConferenceParticipant;
import android.telecom.Connection;
import android.telecom.Connection;
import android.telephony.Rlog;
import android.telephony.Rlog;
@@ -1873,7 +1874,7 @@ public class ImsCall implements ICall {


            if (connectionState != Connection.STATE_DISCONNECTED) {
            if (connectionState != Connection.STATE_DISCONNECTED) {
                ConferenceParticipant conferenceParticipant = new ConferenceParticipant(handle,
                ConferenceParticipant conferenceParticipant = new ConferenceParticipant(handle,
                        displayName, endpointUri, connectionState);
                        displayName, endpointUri, connectionState, Call.Details.DIRECTION_UNKNOWN);
                mConferenceParticipants.add(conferenceParticipant);
                mConferenceParticipants.add(conferenceParticipant);
            }
            }
        }
        }