Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.

Commit 29a6d39

Browse files
authored
Merge pull request #937 from skaut/resume-after-timeout-fe
Added frontend support for resuming after a timeout
2 parents ff592df + 55746c7 commit 29a6d39

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/frontend/App.svelte

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,10 @@
137137
}
138138
139139
function moveErrorHandler(response: Error) {
140+
if (response.name === "ScriptError" && response.message === "Exceeded maximum execution time") {
141+
move();
142+
return;
143+
}
140144
moving = false;
141145
currentTab = "confirmation";
142146
showErrorDialog($_("errorDialog.unknownErrorWithMessage") + response.message)

0 commit comments

Comments
 (0)