mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
Ensure left pane has correct timestamp for call
This commit is contained in:
@@ -13,7 +13,7 @@ export async function onCallEventSync(
|
||||
syncEvent: CallEventSyncEvent
|
||||
): Promise<void> {
|
||||
const { callEvent, confirm } = syncEvent;
|
||||
const { callEventDetails, receivedAtCounter } = callEvent;
|
||||
const { callEventDetails, receivedAtCounter, receivedAtMS } = callEvent;
|
||||
|
||||
if (
|
||||
callEventDetails.mode === CallMode.Direct ||
|
||||
@@ -31,6 +31,10 @@ export async function onCallEventSync(
|
||||
}
|
||||
}
|
||||
|
||||
await updateCallHistoryFromRemoteEvent(callEventDetails, receivedAtCounter);
|
||||
await updateCallHistoryFromRemoteEvent(
|
||||
callEventDetails,
|
||||
receivedAtCounter,
|
||||
receivedAtMS
|
||||
);
|
||||
confirm();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user