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 09aaa4d commit ba8cb12Copy full SHA for ba8cb12
packages/browser/src/tracing/request.ts
@@ -127,7 +127,7 @@ export function instrumentOutgoingRequests(_options?: Partial<RequestInstrumenta
127
event.spans.forEach(span => {
128
if (span.op === 'http.client') {
129
const updatedTimestamp = spanIdToEndTimestamp.get(span.span_id);
130
- if (updatedTimestamp !== undefined) {
+ if (updatedTimestamp) {
131
span.timestamp = updatedTimestamp / 1000;
132
spanIdToEndTimestamp.delete(span.span_id);
133
}
0 commit comments