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 bba748e commit d92d29aCopy full SHA for d92d29a
src/sandbox/eval/loaders/dependency-resolver.js
@@ -26,8 +26,10 @@ export default function getDependency(
26
try {
27
return window.dll_bundle(idMatch[1]);
28
} catch (e) {
29
- // Delete the cache of the throwing dependency
30
- delete window.dll_bundle.c[idMatch[1]];
+ if (window.dll_bundle) {
+ // Delete the cache of the throwing dependency
31
+ delete window.dll_bundle.c[idMatch[1]];
32
+ }
33
throw e;
34
}
35
0 commit comments