Преглед изворни кода

Fixes crash when button.title is undefined

yogevbd пре 6 година
родитељ
комит
30ffc07ea6
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1
    1
      lib/ios/RNNNavigationButtons.m

+ 1
- 1
lib/ios/RNNNavigationButtons.m Прегледај датотеку

@@ -63,7 +63,7 @@
63 63
 
64 64
 -(RNNUIBarButtonItem*)buildButton: (NSDictionary*)dictionary defaultStyle:(RNNButtonOptions *)defaultStyle {
65 65
 	NSString* buttonId = dictionary[@"id"];
66
-	NSString* title = [self getValue:dictionary[@"text"] withDefault:[defaultStyle.text getWithDefaultValue:@""]];
66
+	NSString* title = [self getValue:dictionary[@"text"] withDefault:[defaultStyle.text getWithDefaultValue:nil]];
67 67
 	NSDictionary* component = dictionary[@"component"];
68 68
 	
69 69
 	if (!buttonId) {