|
@@ -182,18 +182,18 @@ Moderator.prototype.createConferenceIq = function () {
|
182
|
182
|
value: true
|
183
|
183
|
}).up();
|
184
|
184
|
//}
|
185
|
|
- if (options.startBitrate) {
|
|
185
|
+ if (this.options.conference.startBitrate) {
|
186
|
186
|
elem.c(
|
187
|
187
|
'property', {
|
188
|
188
|
name: 'startBitrate',
|
189
|
|
- value: options.startBitrate
|
|
189
|
+ value: this.options.conference.startBitrate
|
190
|
190
|
}).up();
|
191
|
191
|
}
|
192
|
|
- if (options.minBitrate) {
|
|
192
|
+ if (this.options.conference.minBitrate) {
|
193
|
193
|
elem.c(
|
194
|
194
|
'property', {
|
195
|
195
|
name: 'minBitrate',
|
196
|
|
- value: options.minBitrate
|
|
196
|
+ value: this.options.conference.minBitrate
|
197
|
197
|
}).up();
|
198
|
198
|
}
|
199
|
199
|
if (this.options.conference.openSctp !== undefined) {
|