We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ec4000 commit 9e4cbdcCopy full SHA for 9e4cbdc
lib/mailbox.js
@@ -1088,7 +1088,7 @@ class Mailbox {
1088
if (messageInfo.messageSpecialUse === '\\Inbox' && (!this.connection.notifyFrom || messageData.internalDate >= this.connection.notifyFrom)) {
1089
let messageData = Object.assign({ account: this.connection.account }, messageInfo);
1090
1091
- let canUseLLM = await llmPreProcess.run(messageData);
+ let canUseLLM = (await llmPreProcess.run(messageData)) && messageInfo.text;
1092
1093
if (canUseLLM && (messageInfo.text.plain || messageInfo.text.html)) {
1094
if (canUseLLM.generateEmailSummary) {
0 commit comments