This commit is contained in:
Flummi 2016-11-02 18:12:43 +01:00
parent 53f91f2ba4
commit 44b636d76a

View File

@ -181,7 +181,7 @@ module.exports = (lib) => {
cb({ success: false, file: tmpdest, msg: 'f0ck! your file is too big (~'+lib.formatSize(size)+'), max '+lib.formatSize(cfg.maxFileSize)+' allowed' });
else {
fs.stat('./b/' + tmpdest, (err, stat) => {
if(!err) {
if(!err && stat.isFile() && stat.size > 300) {
lib.log('Datei '+tmpdest+' existiert');
lib.getCheckSum('./b/' + tmpdest, (cbcs) => {
lib.checkRepostCheckSum(cbcs, (cbcrcs) => {
@ -198,7 +198,7 @@ module.exports = (lib) => {
});
}
else {
lib.log('Datei '+tmpdest+' existiert nicht');
lib.log('Datei '+tmpdest+' existiert nicht oder ist ungültig');
}
});
}