summaryrefslogtreecommitdiff
path: root/alot/widgets
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2018-01-02 12:20:14 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2018-01-16 09:33:19 +0000
commit6fbb9565672509bc9f93ed7ecb3232a6c1653af4 (patch)
tree2492a8376a379fcfeaa01be72adb2f95edaedb36 /alot/widgets
parent2ea874e5a94fa471248be8820be8f6327d1e39cd (diff)
mention unredered HTML parts in message body text
Diffstat (limited to 'alot/widgets')
-rw-r--r--alot/widgets/thread.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/alot/widgets/thread.py b/alot/widgets/thread.py
index 5b2a55f3..396cdf92 100644
--- a/alot/widgets/thread.py
+++ b/alot/widgets/thread.py
@@ -14,7 +14,6 @@ from .globals import TagWidget
from .globals import AttachmentWidget
from ..settings.const import settings
from ..db.utils import decode_header, X_SIGNATURE_MESSAGE_HEADER
-from ..db.utils import extract_body
class MessageSummaryWidget(urwid.WidgetWrap):
@@ -238,7 +237,7 @@ class MessageTree(CollapsibleTree):
def _get_body(self):
if self._bodytree is None:
- bodytxt = extract_body(self._message.get_email())
+ bodytxt = self._message.accumulate_body()
if bodytxt:
att = settings.get_theming_attribute('thread', 'body')
att_focus = settings.get_theming_attribute(