Implemented message shown when no data type is returned.

This commit is contained in:
2023-04-21 09:15:25 +02:00
parent fe6585d509
commit be80399bf8

View File

@@ -265,6 +265,8 @@ function performRequest(endpoint, checkXML, checkTransform) {
document.getElementById("procinfo").innerText = ' Computed using ' + result.processor
if (result.type)
document.getElementById("procinfo").innerText += ". Returned: " + result.type;
else
document.getElementById("procinfo").innerText += ". Engine didn't send data type.";
if (result.status = "OK") {
document.getElementById("procinfo").innerText += " in " + result.time + "ms";