Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/app/src/sandbox/compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,10 @@ async function initializeManager(
options.scopeWhitelist = registry.enabledScopes;
}

// In case the API is not including the field yet
if (typeof registry.proxyEnabled === 'undefined') {
registry.proxyEnabled = true;
}
if (registry.proxyEnabled) {
// With our custom proxy on the server we want to handle downloading
// the tarball. So we proxy it.
Expand Down