|
@@ -179,6 +179,15 @@
|
179
|
179
|
return _universalLinkDomains ? _universalLinkDomains : @[];
|
180
|
180
|
}
|
181
|
181
|
|
|
182
|
+- (void)setDefaultConferenceOptions:(JitsiMeetConferenceOptions *)defaultConferenceOptions {
|
|
183
|
+ if (defaultConferenceOptions != nil && _defaultConferenceOptions.room != nil) {
|
|
184
|
+ @throw [NSException exceptionWithName:@"RuntimeError"
|
|
185
|
+ reason:@"'room' must be null in the default conference options"
|
|
186
|
+ userInfo:nil];
|
|
187
|
+ }
|
|
188
|
+ _defaultConferenceOptions = defaultConferenceOptions;
|
|
189
|
+}
|
|
190
|
+
|
182
|
191
|
#pragma mark - Private API methods
|
183
|
192
|
|
184
|
193
|
- (NSDictionary *)getDefaultProps {
|