87180: Wrong Markdown preview format for files in UNC path (#87501)

Fixing a typo in the code to fix this issue.
This commit is contained in:
Bura Chuhadar
2019-12-21 02:51:23 -05:00
committed by Matt Bierner
parent c0c4eb6a51
commit d06f0e877c
@@ -104,5 +104,5 @@ function containsResource(root: URI, resource: URI): boolean {
resourceFsPath = resourceFsPath.toLowerCase();
}
return startsWith(resource.fsPath, rootPath);
return startsWith(resourceFsPath, rootPath);
}