make missing object interceptor run first, so other interceptors dont get undefined objects

This commit is contained in:
Jamie V 2025-03-03 14:16:19 -08:00
parent 97ae8db9d1
commit f98cabe13b

View File

@ -38,6 +38,7 @@ export default function MissingObjectInterceptor(openmct) {
} }
return object; return object;
} },
priority: openmct.priority.HIGH + 1 // this should be the first interceptor to run
}); });
} }