Adds 'enforcedBridge' property used to make Jicofo use specific bridge and ignore what BridgeSelector module says.
This commit is contained in:
parent
d4cbe5b4fa
commit
cb0d3c47df
|
@ -138,6 +138,13 @@ Moderator.prototype.createConferenceIq = function () {
|
|||
value: this.xmppService.options.hosts.bridge
|
||||
}).up();
|
||||
}
|
||||
if (this.xmppService.options.enforcedBridge !== undefined) {
|
||||
elem.c(
|
||||
'property', {
|
||||
name: 'enforcedBridge',
|
||||
value: this.xmppService.options.enforcedBridge
|
||||
}).up();
|
||||
}
|
||||
// Tell the focus we have Jigasi configured
|
||||
if (this.xmppService.options.hosts.call_control !== undefined) {
|
||||
elem.c(
|
||||
|
|
Loading…
Reference in New Issue