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 cbf1e41 commit c2c2c58Copy full SHA for c2c2c58
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+## v0.38.1
4
+
5
+- [Android] set empty message to prevent breadcrumb exception
6
7
## v0.38.0
8
9
- [Android] Remove requirement to pass in `MainApplication` `new RNSentryPackage(MainApplication.this)`
android/src/main/java/io/sentry/RNSentryModule.java
@@ -205,6 +205,8 @@ public void captureBreadcrumb(ReadableMap breadcrumb) {
205
206
if (breadcrumb.hasKey("message")) {
207
breadcrumbBuilder.setMessage(breadcrumb.getString("message"));
208
+ } else {
209
+ breadcrumbBuilder.setMessage("");
210
}
211
Sentry.record(breadcrumbBuilder.build());
212
0 commit comments