object get in indexing process should use identifier not key

This commit is contained in:
David Tsay 2022-03-10 14:27:22 -08:00
parent c273e83093
commit c4f18a4797

View File

@ -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) {