We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea1d863 commit 1184f71Copy full SHA for 1184f71
src/vs/workbench/services/search/common/textSearchManager.ts
@@ -132,6 +132,9 @@ export class TextSearchManager {
132
const progress = {
133
report: (result: TextSearchResultNew) => {
134
135
+ if (result.uri === undefined) {
136
+ throw Error('Text search result URI is undefined. Please check provider implementation.');
137
+ }
138
const folderQuery = folderMappings.findSubstr(result.uri)!;
139
const hasSibling = folderQuery.folder.scheme === Schemas.file ?
140
hasSiblingPromiseFn(() => {
0 commit comments