Skip to content

Commit

Permalink
Merge pull request #381 from fishshi/fix/#379
Browse files Browse the repository at this point in the history
Override setUpEventListeners in GithubService
  • Loading branch information
rjmacarthy authored Nov 10, 2024
2 parents 149330f + 7fe041c commit 341eefb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "twinny",
"displayName": "twinny - AI Code Completion and Chat",
"description": "Locally hosted AI code completion plugin for vscode",
"version": "3.18.9",
"version": "3.18.10",
"icon": "assets/icon.png",
"keywords": [
"code-inference",
Expand Down
3 changes: 1 addition & 2 deletions src/extension/review-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,9 @@ export class GithubService extends ConversationHistory {
) {
super(context, webView, sessionManager, symmetryService)
this._templateProvider = new TemplateProvider(templateDir)
this.eventListeners()
}

eventListeners() {
setUpEventListeners() {
this.webView.onDidReceiveMessage(
// eslint-disable-next-line @typescript-eslint/no-explicit-any
async (message: ClientMessage<any>) => {
Expand Down

0 comments on commit 341eefb

Please sign in to comment.