From ca128b325d6918e0a68654be697636d7cce502ad Mon Sep 17 00:00:00 2001 From: zhouhaihai Date: Sat, 29 Aug 2020 15:27:48 +0800 Subject: [PATCH] 邮件时间bug --- src/services/globald.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/services/globald.lua b/src/services/globald.lua index e0e9ff9..b299552 100644 --- a/src/services/globald.lua +++ b/src/services/globald.lua @@ -60,25 +60,25 @@ local function mailQuene() if email.mid then redisproxy:hmset(string_format("globalEmail:%s", gid), "id", gid, - "createtime", email.endTime, + "createtime", email.startTime, "title", email.title, "stitle", email.stitle, "content", email.content, "attachments", email.attachments, "endtime", email.endTime, "mid", email.mid, - "timestamp", email.startTime + "timestamp", now ) else redisproxy:hmset(string_format("globalEmail:%s", gid), "id", gid, - "createtime", email.endTime, + "createtime", email.startTime, "title", email.title, "stitle", email.stitle, "content", email.content, "attachments", email.attachments, "endtime", email.endTime, - "timestamp", email.startTime + "timestamp", now ) end end -- libgit2 0.21.2