Skip to content

Commit

Permalink
Extend the export timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
skylineproject authored Sep 1, 2020
1 parent 5685564 commit 7b1823a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -195,14 +195,14 @@
await new Promise((resolve, reject) => {
setTimeout(() => {
reject();
}, 60 * 1000);
}, 180 * 1000);
exportWorker.onmessage = e => {
resolve(e.data);
};
})
);
} catch (e) {
alert("The export didn't complete within 60s. Please try again.");
alert("The export didn't complete successfully. Please reload the page and try again.");
}
isDownloading.set(false);
Expand Down

0 comments on commit 7b1823a

Please sign in to comment.