Skip to content

Commit

Permalink
GitHub - fix event handled (#238676)
Browse files Browse the repository at this point in the history
  • Loading branch information
lszomoru authored Jan 24, 2025
1 parent b976675 commit b9cbfa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/github/src/historyItemDetailsProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export class GitHubSourceControlHistoryItemDetailsProvider implements SourceCont
private readonly _disposables = new DisposableStore();

constructor(private readonly _gitAPI: API, private readonly _logger: LogOutputChannel) {
this._disposables.add(this._gitAPI.onDidCloseRepository(this._onDidCloseRepository));
this._disposables.add(this._gitAPI.onDidCloseRepository(repository => this._onDidCloseRepository(repository)));

this._disposables.add(authentication.onDidChangeSessions(e => {
if (e.provider.id === 'github') {
Expand Down

0 comments on commit b9cbfa4

Please sign in to comment.