Skip to content

Commit 569bf64

Browse files
authored
Change ? to ?+<offset> with filtered crash call stacks. (#13434)
* Change ?\n to ?+<offset> with crash call stacks.
1 parent 5bd0f9b commit 569bf64

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Extension/src/LanguageServer/extension.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1298,6 +1298,12 @@ async function handleCrashFileRead(crashDirectory: string, crashFile: string, cr
12981298
} else {
12991299
pendingCallStack = "?\n";
13001300
}
1301+
if (pendingCallStack === "?\n") {
1302+
const pendingCallStackWithOffset: string = `?${pendingOffset}`;
1303+
if (!containsFilteredTelemetryData(pendingCallStackWithOffset)) {
1304+
pendingCallStack = pendingCallStackWithOffset;
1305+
}
1306+
}
13011307
}
13021308
}
13031309
}

0 commit comments

Comments
 (0)