We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29c6b09 commit 9bf5f3bCopy full SHA for 9bf5f3b
android/src/main/java/io/sentry/RNSentryModule.java
@@ -168,7 +168,7 @@ public void captureBreadcrumb(ReadableMap breadcrumb) {
168
}
169
if (breadcrumb.hasKey("data") && breadcrumb.getMap("data") != null) {
170
Map<String, String> newData = new HashMap<>();
171
- for (Map.Entry<String, Object> data : breadcrumb.getMap("data").toHashMap().entrySet()) {
+ for (Map.Entry<String, Object> data : ((ReadableNativeMap)breadcrumb.getMap("data")).toHashMap().entrySet()) {
172
newData.put(data.getKey(), data.getValue() != null ? data.getValue().toString() : null);
173
174
breadcrumbBuilder.setData(newData);
0 commit comments