Merge pull request #1394 from processing/download-zip-503
Fixes #850: 503 error when downloading sketch
This commit is contained in:
commit
46d4f2c427
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ export function projectForUserExists(username, projectId, callback) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function bundleExternalLibs(project, zip, callback) {
|
function bundleExternalLibs(project, zip, callback) {
|
||||||
const indexHtml = project.files.find(file => file.name === 'index.html');
|
const indexHtml = project.files.find(file => file.name.match(/\.html$/));
|
||||||
let numScriptsResolved = 0;
|
let numScriptsResolved = 0;
|
||||||
let numScriptTags = 0;
|
let numScriptTags = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue