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 082045e commit 4c6f062Copy full SHA for 4c6f062
src/core/webview/ClineProvider.ts
@@ -2535,8 +2535,13 @@ export class ClineProvider implements vscode.WebviewViewProvider {
2535
public async getTelemetryProperties(): Promise<Record<string, any>> {
2536
const { mode, apiConfiguration } = await this.getState()
2537
const appVersion = this.context.extension?.packageJSON?.version
2538
+ const vscodeVersion = vscode.version
2539
+ const platform = process.platform
2540
- const properties: Record<string, any> = {}
2541
+ const properties: Record<string, any> = {
2542
+ vscodeVersion,
2543
+ platform,
2544
+ }
2545
2546
// Add extension version
2547
if (appVersion) {
0 commit comments