trigger incoming call integration only for rtp connections
This commit is contained in:
parent
b7da7f3367
commit
ef5508e5b1
|
@ -135,7 +135,9 @@ public class JingleConnectionManager extends AbstractConnectionManager {
|
||||||
}
|
}
|
||||||
connections.put(id, connection);
|
connections.put(id, connection);
|
||||||
|
|
||||||
|
if (connection instanceof JingleRtpConnection) {
|
||||||
CallIntegrationConnectionService.addNewIncomingCall(getXmppConnectionService(), id);
|
CallIntegrationConnectionService.addNewIncomingCall(getXmppConnectionService(), id);
|
||||||
|
}
|
||||||
|
|
||||||
mXmppConnectionService.updateConversationUi();
|
mXmppConnectionService.updateConversationUi();
|
||||||
connection.deliverPacket(packet);
|
connection.deliverPacket(packet);
|
||||||
|
|
Loading…
Reference in a new issue