Skip to content

Commit

Permalink
Fix #43758 and failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Feb 16, 2018
1 parent e1f33fb commit 936b796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/services/search/node/searchService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ export class DiskSearch implements ISearchResultProvider {

if (query.folderQueries) {
for (const q of query.folderQueries) {
if (q.folder.scheme === Schemas.file && await pfs.exists(q.folder.path)) {
if (q.folder.scheme === Schemas.file && await pfs.exists(q.folder.fsPath)) {
rawSearch.folderQueries.push({
excludePattern: q.excludePattern,
includePattern: q.includePattern,
Expand Down

0 comments on commit 936b796

Please sign in to comment.