angular-three 1.9.8 → 1.9.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2780,8 +2780,8 @@ function createRunInContext() {
2780
2780
  envInjector.get = (...args) => {
2781
2781
  try {
2782
2782
  const originalFlags = args[2];
2783
- if (originalFlags === 0) {
2784
- args[2] = 8;
2783
+ if (!(originalFlags & 8)) {
2784
+ args[2] |= 8;
2785
2785
  }
2786
2786
  const fromEnvInjector = originalGet(...args);
2787
2787
  if (fromEnvInjector)