slight refactor and indent

This commit is contained in:
quenousimporte 2023-09-21 21:47:48 +02:00
parent 78e68bbef2
commit fc3ffcc681
1 changed files with 2 additions and 1 deletions

View File

@ -1542,7 +1542,7 @@ function queryremote(params)
var data = {};
try
{
return decryptstring(xhr.responseText)
decryptstring(xhr.responseText)
.then(decrypted =>
{
data = JSON.parse(decrypted);
@ -1577,6 +1577,7 @@ function queryremote(params)
}
}
}
xhr.send(paramlist.join("&"));
});
}