This commit is contained in:
Flummi 2016-11-02 18:17:56 +01:00
parent 44b636d76a
commit d542ccd2fd

View File

@ -50,10 +50,10 @@ module.exports = (lib) => {
}
else {
fs.stat('./b/' + cb.file, (err, stat) => {
if(err === null)
fs.unlinkSync('./b/' + cb.file);
if(cb.msg !== '')
e.reply(cb.msg);
if(!err && stat.isFile())
fs.unlinkSync('./b/' + cb.file);
});
}
});
@ -174,7 +174,6 @@ module.exports = (lib) => {
dat
.on('finish', () => {
lib.log('bin im Finishevent gelandet, keine Ahnung wieso.');
var size = dat.bytesWritten;
dat.end();
if(size > cfg.maxFileSize)
@ -197,9 +196,6 @@ module.exports = (lib) => {
});
});
}
else {
lib.log('Datei '+tmpdest+' existiert nicht oder ist ungültig');
}
});
}
})