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
Sentry accepts the breadcrumb data as complex JSON content.
This is currently not possible to send as the data field is currently final Map<String, String> data;.
Other SDKs also accept object types as values.
When the data fields are JSON objects, data scrubbing would work on the fields. Atm I have to transform objects to Strings and data scrubbing doesn't work.
Btw, the issue templates are still for the sentry_flutter package if anyone can change this.
The text was updated successfully, but these errors were encountered:
Thanks for raising. We should consider changing it to <String, Object> and serialize the data. We're not using reflection so it might be a best effort there (i.e: Serialize only 1 level and basic types like String, Int etc)
Sentry accepts the breadcrumb data as complex JSON content.
This is currently not possible to send as the data field is currently
final Map<String, String> data;
.Other SDKs also accept object types as values.
When the data fields are JSON objects, data scrubbing would work on the fields. Atm I have to transform objects to Strings and data scrubbing doesn't work.
Btw, the issue templates are still for the sentry_flutter package if anyone can change this.
The text was updated successfully, but these errors were encountered: