[local-sync] Update comment

This commit is contained in:
Christine Spang 2016-12-16 11:06:04 -08:00
parent 5a7aa45629
commit e77fbc21e1

View file

@ -123,7 +123,7 @@ async function parseFromImap(imapMessage, desiredParts, {db, accountId, folder})
} else if (transferEncoding.toLowerCase() === 'base64') {
body[mimetype] = mimelib.decodeBase64(imapMessage.parts[id], charset || 'ascii');
} else {
// 'binary' and custom x-token content-transfer-encodings
// custom x-token content-transfer-encodings
return Promise.reject(new Error(`Unsupported Content-Transfer-Encoding ${transferEncoding}, mimetype ${mimetype}`))
}
}