Skip to content

Commit

Permalink
Merge pull request #937 from skaut/resume-after-timeout-fe
Browse files Browse the repository at this point in the history
Added frontend support for resuming after a timeout
  • Loading branch information
marekdedic authored May 21, 2022
2 parents ff592df + 55746c7 commit 29a6d39
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/frontend/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,10 @@
}
function moveErrorHandler(response: Error) {
if (response.name === "ScriptError" && response.message === "Exceeded maximum execution time") {
move();
return;
}
moving = false;
currentTab = "confirmation";
showErrorDialog($_("errorDialog.unknownErrorWithMessage") + response.message)
Expand Down

0 comments on commit 29a6d39

Please sign in to comment.