Skip to content

Commit b50642a

Browse files
committed
fix lint
1 parent 3490398 commit b50642a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/utils/spanUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export function spanToTraceContext(span: Span): TraceContext {
2424
* Convert a Span to a Sentry trace header.
2525
*/
2626
export function spanToTraceHeader(span: Span): string {
27-
return generateSentryTraceHeader(span.traceId, span.spanId, span.sampled);
27+
return generateSentryTraceHeader(span.traceId, span.spanId, span.isRecording());
2828
}
2929

3030
/**

0 commit comments

Comments
 (0)