Version 0.7.39

This commit is contained in:
Ylian Saint-Hilaire 2021-01-04 13:30:54 -08:00
parent 9db21badb1
commit dec0add176
2 changed files with 3 additions and 3 deletions

View File

@ -1730,8 +1730,8 @@ function connectTunnel(url) {
try { cmd = JSON.parse(rawdata.toString()); } catch (ex) { return; }
if (cmd.reqid == 'up') {
if ((cmd.action == 'uploadack') || (cmd.action == 'uploadstart')) {
var buf = Buffer.alloc(4096);
var len = require('fs').readSync(settings.uploadFile, buf, 1, 4095, settings.uploadPtr);
var buf = Buffer.alloc(16384);
var len = require('fs').readSync(settings.uploadFile, buf, 1, 16383, settings.uploadPtr);
var start = 1;
settings.uploadPtr += len;
if (len > 0) {

View File

@ -1,6 +1,6 @@
{
"name": "meshcentral",
"version": "0.7.38",
"version": "0.7.39",
"keywords": [
"Remote Device Management",
"Remote Device Monitoring",