Bump up the edit send/receive timers to 24hr/48hr

This commit is contained in:
Josh Perez 2023-08-25 09:50:04 -04:00 committed by GitHub
parent 0459ab02d3
commit cc13350d3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 8 deletions

View file

@ -66,5 +66,5 @@ function isDeletionTooOld(
const messageTimestamp =
message.get('serverTimestamp') || message.get('sent_at') || 0;
const delta = Math.abs(doe.serverTimestamp - messageTimestamp);
return delta > DAY;
return delta > DAY * 2;
}