handle nonexistent files in getUploadSize

pull/1/head
ansuz 8 years ago
parent 5bd7e19ddd
commit 192a517e64

@ -276,7 +276,11 @@ var getUploadSize = function (Env, channel, cb) {
}
Fs.stat(path, function (err, stats) {
if (err) { return void cb(err); }
if (err) {
// if a file was deleted, its size is 0 bytes
if (err.code === 'ENOENT') { return cb(void 0, 0); }
return void cb(err);
}
cb(void 0, stats.size);
});
};

Loading…
Cancel
Save