test
This commit is contained in:
parent
53f91f2ba4
commit
44b636d76a
|
@ -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');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user