summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)