Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tsay <david.e.tsay@nasa.gov>2022-03-11 01:27:22 +0300
committerDavid Tsay <david.e.tsay@nasa.gov>2022-03-11 01:27:22 +0300
commitc4f18a4797797d49aaf8aeda6975d100eb550cbd (patch)
treee90de934e68ab665601c302227f3f44c4e436380
parentc273e830930ddd12aac377dd50c8c7bac07e0351 (diff)
object get in indexing process should use identifier not keyvista-r4.9.0-rc8
-rw-r--r--src/api/objects/InMemorySearchProvider.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/objects/InMemorySearchProvider.js b/src/api/objects/InMemorySearchProvider.js
index d334a0ab9..9168fb6ef 100644
--- a/src/api/objects/InMemorySearchProvider.js
+++ b/src/api/objects/InMemorySearchProvider.js
@@ -273,7 +273,7 @@ class InMemorySearchProvider {
this.pendingRequests += 1;
const identifier = await this.openmct.objects.parseKeyString(keyString);
- const domainObject = await this.openmct.objects.get(identifier.key);
+ const domainObject = await this.openmct.objects.get(identifier);
delete provider.pendingIndex[keyString];
try {
if (domainObject) {