mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-19 22:59:48 +01:00
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:
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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user