Fully working

This commit is contained in:
SunSung-W541-2025 2026-02-04 19:41:21 +01:00
parent 0b7da6d008
commit cfda78807d
No known key found for this signature in database
GPG key ID: 9B0583E09C721552
2 changed files with 6 additions and 3 deletions

View file

@ -111,7 +111,7 @@ window.ServerAPI = (function () {
}
}
async function postMapData(path, mapData, params) {
async function postData(path, mapData, params) {
if (!ok) {return null;}
const url = buildUrl(path, params);
@ -140,7 +140,7 @@ window.ServerAPI = (function () {
return {
checkData,
getJson,
postMapData
postData
};
})();
@ -150,5 +150,5 @@ window.ServerAPI = (function () {
return;
}
console.log("Ответ сервера (JSON):", data.info);
console.log("[ServerAPI][enabled]: ", data.info);
})();