Skip to content

Commit 4c6f062

Browse files
committed
Add vscodeVersion and platform too
1 parent 082045e commit 4c6f062

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/core/webview/ClineProvider.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2535,8 +2535,13 @@ export class ClineProvider implements vscode.WebviewViewProvider {
25352535
public async getTelemetryProperties(): Promise<Record<string, any>> {
25362536
const { mode, apiConfiguration } = await this.getState()
25372537
const appVersion = this.context.extension?.packageJSON?.version
2538+
const vscodeVersion = vscode.version
2539+
const platform = process.platform
25382540

2539-
const properties: Record<string, any> = {}
2541+
const properties: Record<string, any> = {
2542+
vscodeVersion,
2543+
platform,
2544+
}
25402545

25412546
// Add extension version
25422547
if (appVersion) {

0 commit comments

Comments
 (0)