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 b3118ed commit a458762Copy full SHA for a458762
background.js
@@ -45,7 +45,7 @@ messenger.messages.onNewMailReceived.addListener(async (folder, messages) => {
45
/*
46
Get the text content of the email, stripping out HTML and CSS
47
*/
48
- const content = getBody(message).substring(0, MAX_CONTENT_LENGTH)
+ const content = (await getBody(message)).substring(0, MAX_CONTENT_LENGTH)
49
50
51
Call Ollama to generate a summary of the email. The service may be (re)starting,
0 commit comments