Don't barf if no info in m.file content

pull/1/head
David Baker 2015-07-08 16:50:49 +01:00
parent 5bed0b7275
commit a591b66732
1 changed files with 7 additions and 5 deletions

View File

@ -24,11 +24,13 @@ module.exports = {
}
var additionals = [];
if (content.info.mimetype && content.info.mimetype.length > 0) {
additionals.push(content.info.mimetype);
}
if (content.info.size && content.info.size.length > 0) {
additionals.push(filesize(content.info.size));
if (content.info) {
if (content.info.mimetype && content.info.mimetype.length > 0) {
additionals.push(content.info.mimetype);
}
if (content.info.size && content.info.size.length > 0) {
additionals.push(filesize(content.info.size));
}
}
if (additionals.length > 0) {