Skip to content

Commit ad5a70e

Browse files
committed
fix and add tests
1 parent 46c76e4 commit ad5a70e

File tree

5 files changed

+321
-51
lines changed

5 files changed

+321
-51
lines changed

packages/core/src/baseclient.ts

+1-1
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)