Loading src/com/android/server/telecom/Call.java +10 −0 Original line number Diff line number Diff line Loading @@ -1973,6 +1973,16 @@ public class Call implements CreateConnectionResponse, EventManager.Loggable, } } boolean wasDowngradedConference = (previousProperties & Connection.PROPERTY_IS_DOWNGRADED_CONFERENCE) != 0; boolean isDowngradedConference = (connectionProperties & Connection.PROPERTY_IS_DOWNGRADED_CONFERENCE) != 0; if (wasDowngradedConference && !isDowngradedConference) { Log.i(this, "DOWNGRADED_CONFERENCE property removed; setting" + " conference state to false"); setConferenceState(false); } mAnalytics.addCallProperties(mConnectionProperties); int xorProps = previousProperties ^ mConnectionProperties; Loading Loading
src/com/android/server/telecom/Call.java +10 −0 Original line number Diff line number Diff line Loading @@ -1973,6 +1973,16 @@ public class Call implements CreateConnectionResponse, EventManager.Loggable, } } boolean wasDowngradedConference = (previousProperties & Connection.PROPERTY_IS_DOWNGRADED_CONFERENCE) != 0; boolean isDowngradedConference = (connectionProperties & Connection.PROPERTY_IS_DOWNGRADED_CONFERENCE) != 0; if (wasDowngradedConference && !isDowngradedConference) { Log.i(this, "DOWNGRADED_CONFERENCE property removed; setting" + " conference state to false"); setConferenceState(false); } mAnalytics.addCallProperties(mConnectionProperties); int xorProps = previousProperties ^ mConnectionProperties; Loading