We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54c25c6 commit 72069caCopy full SHA for 72069ca
1 file changed
ios/react-native-navigation-sdk/NavView.mm
@@ -338,7 +338,7 @@ - (void)handleMarkerInfoWindowTapped:(GMSMarker *)marker {
338
marker.title != nil ? [marker.title UTF8String] : "",
339
marker.opacity,
340
marker.rotation,
341
- [marker.snippet UTF8String],
+ marker.snippet != nil ? [marker.snippet UTF8String] : "",
342
(int)marker.zIndex};
343
self.eventEmitter.onMarkerInfoWindowTapped(result);
344
}
@@ -350,7 +350,7 @@ - (void)handleMarkerClick:(GMSMarker *)marker {
350
351
352
353
354
355
self.eventEmitter.onMarkerClick(result);
356
0 commit comments