Revert "Merge pull request #83060 from microsoft/joh/uri-parse"

This reverts commit 30886e2f67, reversing
changes made to 525f1e4754.
This commit is contained in:
Johannes Rieken
2019-10-30 10:28:41 +01:00
parent f478d91061
commit 58479e80ab
13 changed files with 307 additions and 648 deletions

View File

@@ -260,7 +260,7 @@ export namespace MarkdownString {
const collectUri = (href: string): string => {
try {
let uri = URI.parse(href, true);
let uri = URI.parse(href);
uri = uri.with({ query: _uriMassage(uri.query, resUris) });
resUris[href] = uri;
} catch (e) {