Skip to content

Commit

Permalink
Fix wrongly enable octo (#279)
Browse files Browse the repository at this point in the history
* fix: Another workaround (for source-add).

* fix: Fixes a typo.
  • Loading branch information
bgrozev authored Apr 24, 2018
1 parent 9d42377 commit d1a26c2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions src/main/java/org/jitsi/jicofo/JitsiMeetConferenceImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -1549,8 +1549,11 @@ public XMPPError onAddSource(JingleSession jingleSession,
// TODO: how do we handle this? Re-invite?
}

propagateNewSourcesToOcto(
bridgeSession, sourcesToAdd, sourceGroupsToAdd);
if (bridgeSession != null)
{
propagateNewSourcesToOcto(
bridgeSession, sourcesToAdd, sourceGroupsToAdd);
}
}

propagateNewSources(participant, sourcesToAdd, sourceGroupsToAdd);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ else if (!canceled)
// Failed to invite
logger.info(
"Expiring " + address + " channels - no RESULT for "
+ (reInvite ? "transport-replace" : "session-invite"));
+ (reInvite ? "transport-replace" : "session-initiate"));
expireChannels = true;

// TODO: let meetConference know that our Jingle session failed,
Expand Down

0 comments on commit d1a26c2

Please sign in to comment.