summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/mail2recv.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/net/eathena/mail2recv.cpp b/src/net/eathena/mail2recv.cpp
index 8b4d1dd8b..536425386 100644
--- a/src/net/eathena/mail2recv.cpp
+++ b/src/net/eathena/mail2recv.cpp
@@ -48,6 +48,7 @@
#include "utils/checkutils.h"
#include "utils/gettext.h"
#include "utils/stringutils.h"
+#include "utils/timer.h"
#include "debug.h"
@@ -345,7 +346,7 @@ void Mail2Recv::processMailListPage(Net::MessageIn &msg)
mail->type = static_cast<MailMessageType::Type>(
msg.readUInt8("type"));
mail->sender = msg.readString(24, "sender name");
- mail->time = msg.readInt32("reg time");
+ mail->time = cur_time - msg.readInt32("reg time");
mail->strTime = timeToStr(mail->time);
mail->expireTime = msg.readInt32("expire time");
mail->title = msg.readString(-1, "title");