Markdown preview support the UNC path files. (#26710)

This commit is contained in:
MaruyamaTomoki 2017-05-23 07:29:25 +09:00 committed by Matt Bierner
parent 4b0c5f5773
commit 3e65e255ab

View file

@ -39,7 +39,7 @@ export function getMarkdownUri(uri: vscode.Uri) {
return uri.with({
scheme: 'markdown',
path: uri.fsPath + '.rendered',
path: uri.path + '.rendered',
query: uri.toString()
});
}