You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The event should be processed successfully and sent to Sentry.
Actual Result
There's an error on the Android side when deserializing the event, and it gets silently dropped. I also would expect that an error during processing would get sent to Sentry since it seems like that's what happens in the Javascript library, but maybe I'm wrong about that.
Integration
sentry-android
Build System
Gradle
AGP Version
7.4.2
Proguard
Enabled
Version
6.9.2
Steps to Reproduce
I'm using React Native, but manually initializing Sentry on Android (not sure if the manual initialization is relevant or not)
Capture exception in Javascript, passing in an
extra
map with anull
value in it, e.g.Expected Result
The event should be processed successfully and sent to Sentry.
Actual Result
There's an error on the Android side when deserializing the event, and it gets silently dropped. I also would expect that an error during processing would get sent to Sentry since it seems like that's what happens in the Javascript library, but maybe I'm wrong about that.
It looks like this line
sentry-java/sentry/src/main/java/io/sentry/SentryBaseEvent.java
Line 447 in 308cdb2
ConcurrentHashMap
s don't support null valuesThe text was updated successfully, but these errors were encountered: