Make body function work with all tests

This commit is contained in:
Isaac Shoebottom 2022-10-21 00:31:35 -03:00
parent 29d579b8ac
commit ee767d8067

View File

@ -8,13 +8,16 @@ function match(message, headers) {
}
function body(message) {
if (message["body"][0]["content-type"] === "text/plain") {
return message["body"][0]["content"];
}
/* istanbul ignore else */
if (message["body"][0]["content-type"] === "multipart/signed") {
return message["body"][0]["content"][0]["content"];
if (message["body"] !== undefined) {
if (message["body"][0]["content-type"] === "text/plain") {
return message["body"][0]["content"];
}
/* istanbul ignore else */
if (message["body"][0]["content-type"] === "multipart/signed") {
return message["body"][0]["content"][0]["content"];
}
}
return undefined;
}
function string(message) {