aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Hoà V. DINH <dinh.viet.hoa@gmail.com>2014-01-20 13:49:10 -0800
committerGravatar Hoà V. DINH <dinh.viet.hoa@gmail.com>2014-01-20 13:49:10 -0800
commit606b4da3e35efa6633b0c02bc7f77e3b3789c8ab (patch)
treec54de9db8da196df2a4114dacb028d573a42f96e /src/core
parent3bd0c195538417acdb062198da84dedc350d13b5 (diff)
parent80654fce9123ec6a585df2860efd132542a87738 (diff)
Merge pull request #569 from bpxldavid/master
Make sure that the "size" property is propagated into the Message Info object during fetch
Diffstat (limited to 'src/core')
-rw-r--r--src/core/pop/MCPOPSession.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/pop/MCPOPSession.cc b/src/core/pop/MCPOPSession.cc
index 12b0b032..0d26682e 100644
--- a/src/core/pop/MCPOPSession.cc
+++ b/src/core/pop/MCPOPSession.cc
@@ -439,6 +439,7 @@ Array * POPSession::fetchMessages(ErrorCode * pError)
POPMessageInfo * info = new POPMessageInfo();
info->setUid(uid);
+ info->setSize(msg_info->msg_size);
info->setIndex(msg_info->msg_index);
result->addObject(info);
info->release();