diff options
author | Vincent Richard <[email protected]> | 2013-04-26 12:43:28 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-04-26 12:43:28 +0000 |
commit | 28c386f54ec2ade7bd45c361b739bd7d47075ac2 (patch) | |
tree | 092dd3c8bd503f1a6579ab49089a5781b050c49d | |
parent | Fixed double read of response. (diff) | |
download | vmime-28c386f54ec2ade7bd45c361b739bd7d47075ac2.tar.gz vmime-28c386f54ec2ade7bd45c361b739bd7d47075ac2.zip |
Fixed issue #37.
-rw-r--r-- | src/net/imap/IMAPMessage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/imap/IMAPMessage.cpp b/src/net/imap/IMAPMessage.cpp index 59f20f00..6db00768 100644 --- a/src/net/imap/IMAPMessage.cpp +++ b/src/net/imap/IMAPMessage.cpp @@ -463,7 +463,7 @@ void IMAPMessage::processFetchResponse mailboxList to; IMAPUtils::convertAddressList(*(env->env_to()), to); - hdr->To()->setValue(to); + hdr->To()->setValue(to.toAddressList()); // Sender mailboxList sender; |