summaryrefslogtreecommitdiff
path: root/public/vendor/inlineAttachment
diff options
context:
space:
mode:
Diffstat (limited to 'public/vendor/inlineAttachment')
-rw-r--r--public/vendor/inlineAttachment/inline-attachment.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/public/vendor/inlineAttachment/inline-attachment.js b/public/vendor/inlineAttachment/inline-attachment.js
index e927c428..5c7c7166 100644
--- a/public/vendor/inlineAttachment/inline-attachment.js
+++ b/public/vendor/inlineAttachment/inline-attachment.js
@@ -370,8 +370,11 @@
if (this.isFileAllowed(item)) {
result = true;
var id = ID();
- this.onFileInserted(item.getAsFile(), id);
- this.uploadFile(item.getAsFile(), id);
+ var file = item.getAsFile();
+ if (file !== null) {
+ this.onFileInserted(file, id);
+ this.uploadFile(file, id);
+ }
}
}
}