Skip to content

Commit

Permalink
Merge pull request #943 from skaut/i18n-fix
Browse files Browse the repository at this point in the history
Removed ScriptError message check as the message gets translated
  • Loading branch information
marekdedic authored May 28, 2022
2 parents 86056c5 + 3ea0092 commit 4f74c3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
}
function moveErrorHandler(response: Error) {
if (response.name === "ScriptError" && response.message === "Exceeded maximum execution time") {
if (response.name === "ScriptError") {
move();
return;
}
Expand Down

0 comments on commit 4f74c3a

Please sign in to comment.