Implemented message shown when no data type is returned. (#150) #152

Merged
bema merged 4 commits from bema/ref/#150 into master 2023-04-21 09:31:30 +02:00
Showing only changes of commit 57ea6efe84 - Show all commits

View File

@@ -266,7 +266,7 @@ function performRequest(endpoint, checkXML, checkTransform) {
if (result.type)
document.getElementById("procinfo").innerText += ". Returned: " + result.type;
else
document.getElementById("procinfo").innerText += ". Engine didn't send data type.";
document.getElementById("procinfo").innerText += ". Engine don't support sending returned data type.";
widlam marked this conversation as resolved
Review
document.getElementById("procinfo").innerText += ". Engine doesn't support return of data types.";
``` document.getElementById("procinfo").innerText += ". Engine doesn't support return of data types."; ```
if (result.status = "OK") {
document.getElementById("procinfo").innerText += " in " + result.time + "ms";