We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77be70e commit 8af4d0bCopy full SHA for 8af4d0b
src/vs/workbench/electron-sandbox/window.ts
@@ -331,7 +331,7 @@ export class NativeWindow extends BaseWindow {
331
// Allow to update security settings around protocol handlers
332
ipcRenderer.on('vscode:disablePromptForProtocolHandling', (event: unknown, kind: 'local' | 'remote') => {
333
const setting = kind === 'local' ? 'security.promptForLocalFileProtocolHandling' : 'security.promptForRemoteFileProtocolHandling';
334
- this.configurationService.updateValue(setting, false, ConfigurationTarget.APPLICATION);
+ this.configurationService.updateValue(setting, false);
335
});
336
337
// Window Zoom
0 commit comments