Fix hangouts conference calling regression.
Check the connection-by-id hash table instead of conference-by-id hash table when setting conferenceable connections. Bug: 17919110 Change-Id: Ia8a5ab3fb96926e600d21eca7737a0044b233563
This commit is contained in:
committed by
Michael Dooley
parent
37bd07768a
commit
879142bf1c
@@ -365,7 +365,7 @@ final class RemoteConnectionService {
|
||||
}
|
||||
|
||||
private boolean hasConnection(String callId) {
|
||||
return mConferenceById.containsKey(callId);
|
||||
return mConnectionById.containsKey(callId);
|
||||
}
|
||||
|
||||
private RemoteConnection findConnectionForAction(
|
||||
|
||||
Reference in New Issue
Block a user