Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/vs/platform/credentials/node/credentialsMainService.ts')
-rw-r--r--src/vs/platform/credentials/node/credentialsMainService.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vs/platform/credentials/node/credentialsMainService.ts b/src/vs/platform/credentials/node/credentialsMainService.ts
index f00f3532d00..cc2156d22cd 100644
--- a/src/vs/platform/credentials/node/credentialsMainService.ts
+++ b/src/vs/platform/credentials/node/credentialsMainService.ts
@@ -10,6 +10,9 @@ import { IProductService } from 'vs/platform/product/common/productService';
import { BaseCredentialsMainService, KeytarModule } from 'vs/platform/credentials/common/credentialsMainService';
export class CredentialsWebMainService extends BaseCredentialsMainService {
+ // Since we fallback to the in-memory credentials provider, we do not need to surface any Keytar load errors
+ // to the user.
+ protected surfaceKeytarLoadError?: (err: any) => void;
constructor(
@ILogService logService: ILogService,