Remove extra info from onDidChangeSessions event

This commit is contained in:
Rachel Macfarlane
2021-02-18 15:25:14 -08:00
parent 45dc2f5fa0
commit d131331195
3 changed files with 4 additions and 4 deletions

View File

@@ -120,7 +120,7 @@ export class MainThreadAuthentication extends Disposable implements MainThreadAu
this._proxy = extHostContext.getProxy(ExtHostContext.ExtHostAuthentication);
this._register(this.authenticationService.onDidChangeSessions(e => {
this._proxy.$onDidChangeAuthenticationSessions(e.providerId, e.label, e.event);
this._proxy.$onDidChangeAuthenticationSessions(e.providerId, e.label);
}));
this._register(this.authenticationService.onDidRegisterAuthenticationProvider(info => {