Allow Attachment.fileName
to be null
This commit is contained in:
parent
c81ce1dc92
commit
df693ade7c
1 changed files with 5 additions and 3 deletions
|
@ -27,7 +27,7 @@ exports.CURRENT_SCHEMA_VERSION = 2;
|
||||||
// contentType: MIMEType
|
// contentType: MIMEType
|
||||||
// data: ArrayBuffer
|
// data: ArrayBuffer
|
||||||
// digest: ArrayBuffer
|
// digest: ArrayBuffer
|
||||||
// fileName: string
|
// fileName: string | null
|
||||||
// flags: null
|
// flags: null
|
||||||
// key: ArrayBuffer
|
// key: ArrayBuffer
|
||||||
// size: integer
|
// size: integer
|
||||||
|
@ -53,8 +53,10 @@ exports.isValid = (rawAttachment) => {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return isString(rawAttachment.contentType) &&
|
const hasValidContentType = isString(rawAttachment.contentType);
|
||||||
isString(rawAttachment.fileName);
|
const hasValidFileName =
|
||||||
|
isString(rawAttachment.fileName) || rawAttachment.fileName === null;
|
||||||
|
return hasValidContentType && hasValidFileName;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Middleware
|
// Middleware
|
||||||
|
|
Loading…
Add table
Reference in a new issue