summaryrefslogtreecommitdiff
path: root/alot
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2016-03-30 22:25:02 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2016-03-30 22:25:02 +0100
commit98f1ba44cab6a8fdf0a50c45e795792f2d775a61 (patch)
tree2b5afc2a2b84faaf45c8dd886c1c971d3df99c6e /alot
parent53f5a637ed07c47e57e25c803caf7bc1b06c4e7f (diff)
fix #859
Diffstat (limited to 'alot')
-rw-r--r--alot/commands/thread.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/commands/thread.py b/alot/commands/thread.py
index ec476326..e5ad72a4 100644
--- a/alot/commands/thread.py
+++ b/alot/commands/thread.py
@@ -196,7 +196,7 @@ class ReplyCommand(Command):
# check if reply is to self sent message
if sender_address in my_addresses:
- recipients = [mail['To']]
+ recipients = mail.get_all('To', [])
emsg = 'Replying to own message, set recipients to: %s' \
% recipients
logging.debug(emsg)