File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -2619,7 +2619,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
26192619 * like the current mode, API provider, etc.
26202620 */
26212621 public async getTelemetryProperties ( ) : Promise < Record < string , any > > {
2622- const { mode, apiConfiguration } = await this . getState ( )
2622+ const { mode, apiConfiguration, language } = await this . getState ( )
26232623 const appVersion = this . context . extension ?. packageJSON ?. version
26242624 const vscodeVersion = vscode . version
26252625 const platform = process . platform
@@ -2634,6 +2634,11 @@ export class ClineProvider implements vscode.WebviewViewProvider {
26342634 properties . appVersion = appVersion
26352635 }
26362636
2637+ // Add language
2638+ if ( language ) {
2639+ properties . language = language
2640+ }
2641+
26372642 // Add current mode
26382643 if ( mode ) {
26392644 properties . mode = mode
You can’t perform that action at this time.
0 commit comments