Skip to content

Commit 92d565a

Browse files
committed
fix and add tests
1 parent a228925 commit 92d565a

File tree

5 files changed

+321
-51
lines changed

5 files changed

+321
-51
lines changed

packages/core/src/baseclient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ export abstract class BaseClient<O extends ClientOptions> implements Client<O> {
641641
.then(prepared => {
642642
if (prepared === null) {
643643
this.recordDroppedEvent('event_processor', event.type || 'error');
644-
throw new SentryError('An event processor returned null, will not send event.', 'log');
644+
throw new SentryError('An event processor returned `null`, will not send event.', 'log');
645645
}
646646

647647
const isInternalException = hint.data && (hint.data as { __sentry__: boolean }).__sentry__ === true;

0 commit comments

Comments
 (0)