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 5631f6a commit f5cf5f0Copy full SHA for f5cf5f0
src/utils/documentIndex.ts
@@ -258,6 +258,7 @@ export async function updateIndexForDocument(
258
// This file contains an InterSystems document, so add it to the index
259
if (!documentName || (documentName && documentName != file.name)) {
260
const documentUris = documents.get(file.name) ?? [];
261
+ if (documentUris.some((u) => u.toString() == uriString)) return result;
262
documentUris.push(uri);
263
documents.set(file.name, documentUris);
264
uris.set(uriString, file.name);
0 commit comments