Don't clear accounts badge on cancel, fixes #117357

This commit is contained in:
Rachel Macfarlane 2021-02-23 09:48:23 -08:00
parent 85cff833c2
commit ece247a4f7

View file

@ -455,9 +455,9 @@ export class AuthenticationService extends Disposable implements IAuthentication
const allowed = choice === 0;
if (!cancelled) {
this.updatedAllowedExtension(providerId, accountName, extensionId, extensionName, allowed);
this.removeAccessRequest(providerId, extensionId);
}
this.removeAccessRequest(providerId, extensionId);
return allowed;
}