We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd2a32b commit 90d030eCopy full SHA for 90d030e
dart/lib/src/sentry_exception_factory.dart
@@ -57,9 +57,9 @@ class SentryExceptionFactory {
57
}
58
59
60
- final exceptionString = exception.toString();
+ final throwableString = throwable.toString();
61
final stackTraceString = stackTrace.toString();
62
- final value = exceptionString.replaceAll(stackTraceString, '').trim();
+ final value = throwableString.replaceAll(stackTraceString, '').trim();
63
64
// if --obfuscate feature is enabled, 'type' won't be human readable.
65
// https://flutter.dev/docs/deployment/obfuscate#caveat
0 commit comments