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
On android (ios is fine) after first event is sent the custom values for release/version/dist are set null so next subsequent events have release and dist values null.
This is caused by function stripInternalSentry defined RNSentryModule.java:415 which clears version variables each time event is sent. This behaviour is inconsistent with ios, which retains those values for the whole time.
OS:
Platform:
Output of
node -v && npm -v && npm ls --prod --depth=0
Config:
I have following issue:
On android (ios is fine) after first event is sent the custom values for release/version/dist are set null so next subsequent events have release and dist values null.
This is caused by function stripInternalSentry defined RNSentryModule.java:415 which clears version variables each time event is sent. This behaviour is inconsistent with ios, which retains those values for the whole time.
Steps to reproduce:
Sentry.setVersion('1.1.0-foobar')
Sentry.captureException(new Error('First error'))
Sentry.captureException(new Error('Second error'))
Actual result:
On sentry.io I see two events with releases
Expected result:
The text was updated successfully, but these errors were encountered: