Downgrade simple browser to prompt instead of being the default on web

We need more testing in codespaces before enabling it automatically
This commit is contained in:
Matt Bierner 2021-01-14 18:08:47 -08:00
parent 3310d3ac2d
commit d87041edde

View file

@ -51,7 +51,7 @@ export function activate(context: vscode.ExtensionContext) {
const originalUri = new URL(uri.toString());
if (enabledHosts.has(originalUri.hostname)) {
return isWeb()
? vscode.ExternalUriOpenerPriority.Preferred
? vscode.ExternalUriOpenerPriority.Default
: vscode.ExternalUriOpenerPriority.Option;
}