Skip to content

Commit

Permalink
Fix caching bug with multiple workspaces (#231645)
Browse files Browse the repository at this point in the history
fix caching bug with multiple workspaces
  • Loading branch information
benibenj authored Oct 18, 2024
1 parent 3906f4c commit a77885d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ class ExplorerFindProvider implements IAsyncFindProvider<ExplorerItem> {
filePattern: isFuzzyMatch ? pattern : `**/*${pattern}*`,
maxResults: 512,
sortByScore: true,
cacheKey: `explorerfindprovider:${sessionId}`,
cacheKey: `explorerfindprovider:${folder.index}:${sessionId}`,
excludePattern: searchExcludePattern,
}, token);

Expand Down

0 comments on commit a77885d

Please sign in to comment.