typo fixed
This commit is contained in:
parent
cae6cfc8a6
commit
c77696f3fe
1 changed files with 1 additions and 1 deletions
|
|
@ -1043,7 +1043,7 @@ async function processEmails(messages, addTagsAuto, spamFilter) {
|
||||||
if (addTagsAuto || spamFilter) {
|
if (addTagsAuto || spamFilter) {
|
||||||
curr_fullMessage = await browser.messages.getFull(message.id);
|
curr_fullMessage = await browser.messages.getFull(message.id);
|
||||||
msg_text = getMailBody(curr_fullMessage);
|
msg_text = getMailBody(curr_fullMessage);
|
||||||
taLog.log("Startin from the HTML body if present and converting to plain text...");
|
taLog.log("Starting from the HTML body if present and converting to plain text...");
|
||||||
body_text = htmlBodyToPlainText(msg_text.html);
|
body_text = htmlBodyToPlainText(msg_text.html);
|
||||||
if( body_text.length == 0 ){
|
if( body_text.length == 0 ){
|
||||||
taLog.log("No HTML found in the message body, using plain text...");
|
taLog.log("No HTML found in the message body, using plain text...");
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue