mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-25 04:36:46 +00:00
Send support for Sender Key
This commit is contained in:
@@ -768,12 +768,19 @@ export class CallingClass {
|
||||
// We "fire and forget" because sending this message is non-essential.
|
||||
wrapWithSyncMessageSend({
|
||||
conversation,
|
||||
logId: `sendGroupCallUpdateMessage/${conversationId}-${eraId}`,
|
||||
send: sender =>
|
||||
sender.sendGroupCallUpdate({ eraId, groupV2, timestamp }, sendOptions),
|
||||
logId: `sendToGroup/groupCallUpdate/${conversationId}-${eraId}`,
|
||||
send: () =>
|
||||
window.Signal.Util.sendToGroup(
|
||||
{ groupCallUpdate: { eraId }, groupV2, timestamp },
|
||||
conversation,
|
||||
sendOptions
|
||||
),
|
||||
timestamp,
|
||||
}).catch(err => {
|
||||
window.log.error('Failed to send group call update', err);
|
||||
window.log.error(
|
||||
'Failed to send group call update:',
|
||||
err && err.stack ? err.stack : err
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user