merge-requests/237/merge
Tag 2023-02-09 18:22:35 -08:00
rodzic e8b158f72f
commit 72ed4dd122
3 zmienionych plików z 1319 dodań i 161 usunięć

Wyświetl plik

@ -624,6 +624,7 @@ function getChunkedBuffer(file_url, callback, flag, mode, port, cookie, errorHan
.on("end", function () {})
.on("error", function (e)
{
ulsUpdatedTd.innerHTML = "<b><i>Error downloading</i></b>";
console.error("Got error: " + e.message);
});
});

Wyświetl plik

@ -622,7 +622,15 @@ function gtChatSendUUID()
{
var msg = Object();
msg.type = "uuid";
if (g_appSettings.chatUUID != "") msg.uuid = g_appSettings.chatUUID;
if (g_appSettings.chatUUID != "")
{
msg.uuid = g_appSettings.chatUUID;
}
else
{
msg.uuid = null;
}
msg.call = myDEcall;
msg.ver = gtShortVersion;