Skip to content

Commit

Permalink
fix: Quick fix for a problem of delayed session-accept responses.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrozev authored and damencho committed Apr 24, 2018
1 parent 88c0a8e commit 9d42377
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/jitsi/jicofo/JitsiMeetConferenceImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,8 @@ public XMPPError onSessionAccept(

// If we accepted any new sources from the participant, update
// the state of all remote bridges.
if (!sourcesAdded.isEmpty() || !sourceGroupsAdded.isEmpty())
if ((!sourcesAdded.isEmpty() || !sourceGroupsAdded.isEmpty())
&& participantBridge != null)
{
propagateNewSourcesToOcto(
participantBridge, sourcesAdded, sourceGroupsAdded);
Expand Down

0 comments on commit 9d42377

Please sign in to comment.