forked from mirror/monocles_chat_clean
minor safeguard to ensure call integration ends
(cherry picked from commit f18ec53233b52240520bb88d186a8cbe9b6daedc)
This commit is contained in:
parent
1e5d649ae8
commit
a4bdcd02a7
1 changed files with 2 additions and 2 deletions
|
@ -498,8 +498,8 @@ public class JingleConnectionManager extends AbstractConnectionManager {
|
|||
final RtpSessionProposal proposal =
|
||||
getRtpSessionProposal(account, from.asBareJid(), sessionId);
|
||||
synchronized (rtpSessionProposals) {
|
||||
// TODO remove the remove()!= null check to ensure we always call busy()
|
||||
if (proposal != null && rtpSessionProposals.remove(proposal) != null) {
|
||||
if (proposal != null) {
|
||||
rtpSessionProposals.remove(proposal);
|
||||
proposal.callIntegration.busy();
|
||||
writeLogMissedOutgoing(
|
||||
account, proposal.with, proposal.sessionId, serverMsgId, timestamp);
|
||||
|
|
Loading…
Reference in a new issue