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 d7ca46e commit 88ad1a9Copy full SHA for 88ad1a9
src/sentry/wrapper.android.ts
@@ -381,6 +381,8 @@ export namespace NATIVE {
381
if (value && typeof config[methodName] === 'function') {
382
if (typeof value === 'number') {
383
config[methodName](java.lang.Double.valueOf(value));
384
+ } else if (typeof value === 'boolean') {
385
+ config[methodName](java.lang.Boolean.valueOf(value));
386
} else {
387
config[methodName](value);
388
}
0 commit comments