Skip to content

Commit

Permalink
fix(agent): event name Connected -> AgentConnected. (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
icycodes authored Aug 10, 2023
1 parent b6ce857 commit ad85bef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/tabby-agent/src/TabbyAgent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export class TabbyAgent extends EventEmitter implements Agent {
this.logger.debug({ event }, "Status changed");
super.emit("statusChanged", event);
if (this.status == "ready") {
this.anonymousUsageLogger.uniqueEvent("Connected");
this.anonymousUsageLogger.uniqueEvent("AgentConnected");
}
}
}
Expand Down

0 comments on commit ad85bef

Please sign in to comment.