Skip to content

Commit

Permalink
fix #317 - Upgrading Jicofo to Stable Release 2.0.5765
Browse files Browse the repository at this point in the history
  • Loading branch information
deleolajide committed Apr 30, 2021
1 parent 599840c commit d3ede55
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file modified classes/jicofo/jicofo-1.1-SNAPSHOT-jar-with-dependencies.jar
Binary file not shown.
Binary file modified classes/jicofo/jicofo-1.1-SNAPSHOT.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public void initializePlugin(final PluginManager manager, final File pluginDirec
jitsiJicofoWrapper.initialize(pluginDirectory);
loadBranding();

if ( JiveGlobals.getBooleanProperty( "ofmeet.use.internal.focus.component", false ) )
if ( JiveGlobals.getBooleanProperty( "ofmeet.use.internal.focus.component", true ) )
{
focusComponent = new FocusComponent();
componentManager = ComponentManagerFactory.getComponentManager();
Expand Down
4 changes: 2 additions & 2 deletions src/webapp/libs/lib-jitsi-meet.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -13944,8 +13944,8 @@
join(e) {
return this.password = e, new Promise(e => {
this.options.disableFocus && _.info("Conference focus disabled for " + this.roomjid);
(this.options.disableFocus ? Promise.resolve() : this.moderator.allocateConferenceFocus()).then(() => {
this.sendPresence(!0), this._removeConnListeners.push(this.connection.addEventListener(f.a.Events.CONN_STATUS_CHANGED, this.onConnStatusChanged.bind(this))), e()
(this.options.disableFocus ? Promise.resolve() : this.sendPresence(!0), this.moderator.allocateConferenceFocus()).then(() => { // BAO
this._removeConnListeners.push(this.connection.addEventListener(f.a.Events.CONN_STATUS_CHANGED, this.onConnStatusChanged.bind(this))), e()
})
})
}
Expand Down

0 comments on commit d3ede55

Please sign in to comment.