Skip to content

Commit a6d6216

Browse files
authored
fix: updated Mapbox callstack check for iOS custom headers to check for MapLibre instead (#461)
* fix: update callstack check from Mapbox to MapLibre * chore: update changelog
1 parent 2671381 commit a6d6216

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ PR Title ([#123](link to my pr))
66
77
```
88

9+
fix: updated Mapbox callstack check for iOS custom headers to check for MapLibre instead [#461](https://github.com/maplibre/maplibre-react-native/pull/461)
10+
911
## 10.0.0-alpha.17
1012

1113
fix: [add generic expo plugin to remove Duplicated Signature in Xcode 15/16](<[#453](https://github.com/maplibre/maplibre-react-native/pull/453)>)

ios/RCTMLN/MLNCustomHeaders.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ +(NSMutableURLRequest*) __swizzle_requestWithURL:(NSURL*)url {
2121
return [NSMutableURLRequest __swizzle_requestWithURL:url];
2222
}
2323

24-
if ([stack[1] containsString:@"Mapbox"] == NO) {
24+
if ([stack[1] containsString:@"MapLibre"] == NO) {
2525
return [NSMutableURLRequest __swizzle_requestWithURL:url];
2626
}
2727

0 commit comments

Comments
 (0)