diff --git a/src/project/ProjectManager.js b/src/project/ProjectManager.js index 519b1e281..08f579818 100644 --- a/src/project/ProjectManager.js +++ b/src/project/ProjectManager.js @@ -1468,6 +1468,12 @@ define(function (require, exports, module) { _openProject(null, result); return result.promise(); } + const rootPath = ProjectModel._ensureTrailingSlash(path); + if(rootPath === getWelcomeProjectPath()) { + // welcome project path is always guaranteed to be present! + _openProject(rootPath, result); + return result.promise(); + } const rootEntry = FileSystem.getDirectoryForPath(path); rootEntry.exists(function (err, exists) {