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

Commit 4f74c3a

Browse files
authored
Merge pull request #943 from skaut/i18n-fix
Removed ScriptError message check as the message gets translated
2 parents 86056c5 + 3ea0092 commit 4f74c3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/frontend/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
}
138138
139139
function moveErrorHandler(response: Error) {
140-
if (response.name === "ScriptError" && response.message === "Exceeded maximum execution time") {
140+
if (response.name === "ScriptError") {
141141
move();
142142
return;
143143
}

0 commit comments

Comments
 (0)