Skip to content

Commit 5b4a382

Browse files
authored
Drop node.js errors (microsoft#188957)
1 parent ec9b56e commit 5b4a382

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/telemetry/common/errorTelemetry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export default abstract class BaseErrorTelemetry {
7878

7979
private _onErrorEvent(err: any): void {
8080

81-
if (!err) {
81+
if (!err || err.code) {
8282
return;
8383
}
8484

0 commit comments

Comments
 (0)