Merge pull request #2669 from oxen-io/clearnet

use envelope time when dont have msg request response timestamp
pull/2852/head v1.10.5
Audric Ackermann 2 years ago committed by GitHub
commit 102d79b948
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -626,11 +626,9 @@ async function handleMessageRequestResponse(
unblindedConvoId,
ConversationTypeEnum.PRIVATE
);
let mostRecentActiveAt =
Math.max(...compact(convosToMerge.map(m => m.get('active_at')))) || Date.now();
if (!isFinite(mostRecentActiveAt)) {
mostRecentActiveAt = Date.now();
let mostRecentActiveAt = Math.max(...compact(convosToMerge.map(m => m.get('active_at'))));
if (!isFinite(mostRecentActiveAt) || mostRecentActiveAt <= 0) {
mostRecentActiveAt = toNumber(envelope.timestamp);
}
conversationToApprove.set({

Loading…
Cancel
Save