Skip to content

Commit

Permalink
Fix scheme check
Browse files Browse the repository at this point in the history
Fixes #135361
  • Loading branch information
mjbvz committed Oct 20, 2021
1 parent 04f51ad commit d51d291
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function getResourceToLoad(

function containsResource(root: URI, resource: URI): boolean {
if (root.scheme !== resource.scheme) {
return true;
return false;
}

let rootPath = root.fsPath + (root.fsPath.endsWith(sep) ? '' : sep);
Expand Down

0 comments on commit d51d291

Please sign in to comment.