diff --git a/trypandoc/trypandoc.js b/trypandoc/trypandoc.js index a3a7cfd04..84fe491ca 100644 --- a/trypandoc/trypandoc.js +++ b/trypandoc/trypandoc.js @@ -52,7 +52,7 @@ function paramsFromURL() { } function handleErrors(response) { - if (response.status == 503 || response.status == 500) { + if (response.status == 503) { throw Error("Conversion timed out.") } else if (!response.ok) { throw Error(response.statusText);