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 0a3d0e3 commit a6ce75dCopy full SHA for a6ce75d
.changeset/wicked-suns-cry.md
@@ -0,0 +1,5 @@
1
+---
2
+"claude-dev": patch
3
4
+
5
+Telemetry fix
src/core/controller/index.ts
@@ -264,6 +264,13 @@ export class Controller {
264
}
265
266
})
267
268
+ // Initialize telemetry service with user's current setting
269
+ this.getStateToPostToWebview().then((state) => {
270
+ const { telemetrySetting } = state
271
+ const isOptedIn = telemetrySetting !== "disabled"
272
+ telemetryService.updateTelemetryState(isOptedIn)
273
+ })
274
break
275
case "newTask":
276
// Code that should run in response to the hello message command
0 commit comments