Skip to content

Commit

Permalink
❄️: surpress fetchInfoPreflight when creating a new project
Browse files Browse the repository at this point in the history
  • Loading branch information
linusha authored and merryman committed Jan 30, 2024
1 parent 0391571 commit 9112c7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lively.freezer/src/util/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ export async function bootstrap ({
await polyfills();
const oldEnv = $world.env;
doBootstrap ? await bootstrapLivelySystem(progress, fastLoad) : await fastPrepLivelySystem();
if (projectName) {
if (projectName && projectName !== '__newProject__') {
if (!lively.isInOfflineMode) {
Project.fetchInfoPreflight(projectName);
}
Expand Down

0 comments on commit 9112c7f

Please sign in to comment.