Update app.js

This commit is contained in:
Sergio R. Caprile 2022-07-01 15:58:03 -03:00 committed by GitHub
parent d6e1a3ab4c
commit d13509e302
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ var sendFileData = function(name, data, chunkSize) {
var url = '/upload?offset=' + offset + '&name=' + encodeURIComponent(name);
var ok;
setStatus(
'Upoading ' + name + ', bytes ' + offset + '..' +
'Uploading ' + name + ', bytes ' + offset + '..' +
(offset + chunk.length) + ' of ' + data.length);
fetch(url, opts)
.then(function(res) {