Set time ms rather than hours (#250)
This commit is contained in:
parent
80f6ae675f
commit
1e1677695c
|
@ -63,7 +63,7 @@ export class SendResponse implements BaseResponse {
|
||||||
|
|
||||||
private static getStandardDeletionDate(days: number) {
|
private static getStandardDeletionDate(days: number) {
|
||||||
const d = new Date();
|
const d = new Date();
|
||||||
d.setHours(d.getHours() + (days * 24));
|
d.setTime(d.getTime() + (days * 86400000)) // ms per day
|
||||||
return d;
|
return d;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue