Quellcode durchsuchen

fix iOS crash on showController (#1588)

Ran Greenberg vor 7 Jahren
Ursprung
Commit
e5244b2f76
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      ios/RCCManagerModule.m

+ 1
- 1
ios/RCCManagerModule.m Datei anzeigen

@@ -325,7 +325,7 @@ RCT_EXPORT_METHOD(
325 325
 {
326 326
 
327 327
     NSMutableDictionary *modifiedGlobalProps = [globalProps mutableCopy];
328
-    layout[@"props"][@"passProps"][GLOBAL_SCREEN_ACTION_COMMAND_TYPE] = COMMAND_TYPE_SHOW_MODAL;
328
+    modifiedGlobalProps[@"props"][@"passProps"][GLOBAL_SCREEN_ACTION_COMMAND_TYPE] = COMMAND_TYPE_SHOW_MODAL;
329 329
     
330 330
     UIViewController *controller = [RCCViewController controllerWithLayout:layout globalProps:modifiedGlobalProps bridge:[[RCCManager sharedInstance] getBridge]];
331 331
     if (controller == nil)