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 41317f9 commit 711c34bCopy full SHA for 711c34b
src/vs/workbench/services/telemetry/browser/telemetryService.ts
@@ -49,7 +49,7 @@ class WebAppInsightsAppender implements ITelemetryAppender {
49
50
// If we cannot access the endpoint this most likely means it's being blocked
51
// and we should not attempt to send any telemetry.
52
- fetch(endpointUrl).catch(() => (this._aiClient = undefined));
+ fetch(endpointUrl, { method: 'POST' }).catch(() => (this._aiClient = undefined));
53
}).catch(err => {
54
console.error(err);
55
});
0 commit comments