mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 12:04:04 +01:00
don't warn when fixing missing scheme, just do it... bring back strict mode for parse
This commit is contained in:
@@ -260,7 +260,7 @@ export namespace MarkdownString {
|
||||
|
||||
const collectUri = (href: string): string => {
|
||||
try {
|
||||
let uri = URI.parse(href);
|
||||
let uri = URI.parse(href, true);
|
||||
uri = uri.with({ query: _uriMassage(uri.query, resUris) });
|
||||
resUris[href] = uri;
|
||||
} catch (e) {
|
||||
|
||||
Reference in New Issue
Block a user