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 f9e320e commit 076f754Copy full SHA for 076f754
packages/core/src/baseclient.ts
@@ -291,7 +291,10 @@ export abstract class BaseClient<O extends ClientOptions> implements Client<O> {
291
for (const attachment of hint.attachments || []) {
292
env = addItemToEnvelope(
293
env,
294
- createAttachmentEnvelopeItem(attachment, this._options.transportOptions?.textEncoder),
+ createAttachmentEnvelopeItem(
295
+ attachment,
296
+ this._options.transportOptions && this._options.transportOptions.textEncoder,
297
+ ),
298
);
299
}
300
0 commit comments