@rnmapbox/maps 10.1.39-rc.0 → 10.1.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,6 @@ package com.rnmapbox.rnmbx.components.annotation
2
2
 
3
3
  import android.content.Context
4
4
  import android.view.View.MeasureSpec
5
- import com.facebook.react.uimanager.MeasureSpecAssertions
6
5
  import com.facebook.react.views.view.ReactViewGroup
7
6
 
8
7
  class RNMBXMarkerViewContent(context: Context): ReactViewGroup(context) {
@@ -93,9 +93,9 @@ using namespace facebook::react;
93
93
  if (defaultStop != nil) {
94
94
  _view.defaultStop = defaultStop;
95
95
  }
96
- id followUserLocation = RNMBXConvertFollyDynamicToId(newViewProps.followUserLocation);
97
- if (followUserLocation != nil) {
98
- _view.followUserLocation = followUserLocation;
96
+ id followUserLocationDynamic = RNMBXConvertFollyDynamicToId(newViewProps.followUserLocation);
97
+ if (followUserLocationDynamic != nil) {
98
+ _view.followUserLocation = [followUserLocationDynamic boolValue];
99
99
  }
100
100
  id followUserMode = RNMBXConvertFollyDynamicToId(newViewProps.followUserMode);
101
101
  if (followUserMode != nil) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rnmapbox/maps",
3
3
  "description": "A Mapbox react native module for creating custom maps",
4
- "version": "10.1.39-rc.0",
4
+ "version": "10.1.39",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },