Update libsignal-client to 0.76.0

This commit is contained in:
Fedor Indutny 2025-06-30 11:43:41 -07:00 committed by GitHub
commit e4e8fadb0f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
43 changed files with 245 additions and 883 deletions

View file

@ -2176,7 +2176,7 @@ export default class MessageSender {
}: Readonly<{
contentHint: number;
messageId?: string;
proto: Buffer;
proto: Uint8Array;
sendType: SendTypesType;
timestamp: number;
urgent: boolean;
@ -2402,7 +2402,7 @@ export default class MessageSender {
serviceIds.length > 1
? this.makeSendLogCallback({
contentHint: contentHint ?? ContentHint.IMPLICIT,
proto: Buffer.from(Proto.Content.encode(contentMessage).finish()),
proto: Proto.Content.encode(contentMessage).finish(),
sendType: 'senderKeyDistributionMessage',
timestamp,
urgent,