mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-27 21:53:18 +00:00
Support for new GroupV2 groups
This commit is contained in:
@@ -10,7 +10,7 @@ export async function deleteForEveryone(
|
||||
// Make sure the server timestamps for the DOE and the matching message
|
||||
// are less than one day apart
|
||||
const delta = Math.abs(
|
||||
doe.get('serverTimestamp') - message.get('serverTimestamp')
|
||||
doe.get('serverTimestamp') - (message.get('serverTimestamp') || 0)
|
||||
);
|
||||
if (delta > ONE_DAY) {
|
||||
window.log.info('Received late DOE. Dropping.', {
|
||||
|
||||
Reference in New Issue
Block a user