mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-25 02:48:23 +01:00
Throttle typing events, fix profile logging, fix group typing
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* global textsecure, WebAPI, libsignal, OutgoingMessage, window */
|
||||
/* global _, textsecure, WebAPI, libsignal, OutgoingMessage, window */
|
||||
|
||||
/* eslint-disable more/no-then, no-bitwise */
|
||||
|
||||
@@ -533,7 +533,7 @@ MessageSender.prototype = {
|
||||
}
|
||||
|
||||
const recipients = groupId
|
||||
? await textsecure.storage.groups.getNumbers(groupId)
|
||||
? _.without(await textsecure.storage.groups.getNumbers(groupId), myNumber)
|
||||
: [recipientId];
|
||||
const groupIdBuffer = groupId
|
||||
? window.Signal.Crypto.fromEncodedBinaryToArrayBuffer(groupId)
|
||||
|
||||
Reference in New Issue
Block a user