fix download count on server (#863)

This commit is contained in:
Emily Hou 2018-07-17 09:48:47 -07:00 committed by GitHub
parent d906e927ed
commit 59ba89262f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 3 deletions

View file

@ -21,10 +21,11 @@ module.exports = async function(req, res) {
file_stream.destroy();
});
file_stream.on('close', async () => {
file_stream.on('end', async () => {
if (cancelled) {
return;
}
const dl = meta.dl + 1;
const dlimit = meta.dlimit;
try {