mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-12-28 19:24:32 +08:00
fixed rdate format on user delete
This commit is contained in:
parent
414962342b
commit
7f49180257
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ let run = async taskData => {
|
|||
}
|
||||
);
|
||||
|
||||
let rdate = new Date(Date.now() + consts.DELETED_USER_MESSAGE_RETENTION);
|
||||
let rdate = new Date(Date.now() + consts.DELETED_USER_MESSAGE_RETENTION).getTime();
|
||||
|
||||
let messageData;
|
||||
let updateEntries = [];
|
||||
|
|
Loading…
Reference in a new issue