Browse Source

feat(ios/sdk): fix room taken from wrong param

factor2
Calin-Teodor 1 year ago
parent
commit
bbf55e8476
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      ios/sdk/src/JitsiMeet.m

+ 3
- 3
ios/sdk/src/JitsiMeet.m View File

@@ -62,7 +62,7 @@
62 62
 
63 63
         // Initialize the one and only bridge for interfacing with React Native.
64 64
         _bridgeWrapper = [[RCTBridgeWrapper alloc] init];
65
-        
65
+
66 66
         // Initialize the listener for handling start/stop screensharing notifications.
67 67
         _screenshareEventEmiter = [[ScheenshareEventEmiter alloc] init];
68 68
 
@@ -141,7 +141,7 @@
141 141
     if (_bridgeWrapper != nil) {
142 142
         return;
143 143
     };
144
-    
144
+
145 145
     _bridgeWrapper = [[RCTBridgeWrapper alloc] init];
146 146
 }
147 147
 
@@ -231,7 +231,7 @@
231 231
 }
232 232
 
233 233
 - (void)setDefaultConferenceOptions:(JitsiMeetConferenceOptions *)defaultConferenceOptions {
234
-    if (defaultConferenceOptions != nil && _defaultConferenceOptions.room != nil) {
234
+    if (defaultConferenceOptions != nil && defaultConferenceOptions.room != nil) {
235 235
         @throw [NSException exceptionWithName:@"RuntimeError"
236 236
                                        reason:@"'room' must be null in the default conference options"
237 237
                                      userInfo:nil];

Loading…
Cancel
Save