From 68b16532209677c7b3bc2928b8b1ae168d30cc8f Mon Sep 17 00:00:00 2001 From: maxkadushkin Date: Fri, 26 Jan 2024 17:34:55 +0300 Subject: [PATCH] [PDFE] fix bug 66160 --- apps/common/checkExtendedPDF.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/checkExtendedPDF.js b/apps/common/checkExtendedPDF.js index ec4915c87f..1f0bcfeff0 100644 --- a/apps/common/checkExtendedPDF.js +++ b/apps/common/checkExtendedPDF.js @@ -92,7 +92,7 @@ function downloadPartialy(url, limit, postData, callback) { var callbackCalled = false; var xhr = new XMLHttpRequest(); //value of responseText always has the current content received from the server, even if it's incomplete - xhr.responseType = "text"; + // xhr.responseType = "json"; it raises an IE error. bug 66160 xhr.overrideMimeType('text/xml; charset=iso-8859-1'); xhr.onreadystatechange = function () { if (callbackCalled) {