Fixed meshcore download.
Ylian Saint-Hilaire committed
Jan 25, 2022 at 16:46 UTC
81214cd93292e7e3b340d86e75d1c166e13ce63d
1 file changed
+1
-1
webserver.js
+1
-1
@@ -5215,7 +5215,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF
5215
var bin = parent.defaultMeshCores[req.query.dlcore];
5216
if ((bin == null) || (bin.length < 5)) { try { res.sendStatus(404); } catch (ex) { } return; }
5217
setContentDispositionHeader(res, 'application/octet-stream', req.query.dlcore + '.js', null, 'meshcore.js');
5218
- res.send(bin.substring(4));
5218
+ res.send(bin.slice(4));
5219
return;
5220
}
5221