mirror of
https://github.com/timvisee/send.git
synced 2026-03-05 13:39:54 -05:00
don't upload empty files
This commit is contained in:
@@ -44,6 +44,9 @@ module.exports = function(state, emit) {
|
||||
event.preventDefault();
|
||||
const target = event.target;
|
||||
const file = target.files[0];
|
||||
if (file.size === 0) {
|
||||
return;
|
||||
}
|
||||
await fadeOut('page-one');
|
||||
emit('upload', { file, type: 'click' });
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user