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

@@ -156,8 +156,8 @@ export class ExtHostAuthentication implements ExtHostAuthenticationShape {
throw new Error(`Unable to find authentication provider with handle: ${providerId}`);
}
$onDidChangeAuthenticationSessions(id: string, label: string, event: modes.AuthenticationSessionsChangeEvent) {
this._onDidChangeSessions.fire({ provider: { id, label }, ...event });
$onDidChangeAuthenticationSessions(id: string, label: string) {
this._onDidChangeSessions.fire({ provider: { id, label } });
return Promise.resolve();
}