Update libsignal to 0.62.0

This commit is contained in:
Fedor Indutny 2024-11-14 10:31:02 -08:00 committed by GitHub
parent b347a628b3
commit c123218e7f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 92 additions and 8 deletions

View file

@ -465,7 +465,9 @@ export class BackupExportStream extends Readable {
)
: null,
expireTimerVersion: attributes.expireTimerVersion,
muteUntilMs: getSafeLongFromTimestamp(attributes.muteExpiresAt),
muteUntilMs: attributes.muteExpiresAt
? getSafeLongFromTimestamp(attributes.muteExpiresAt)
: null,
markedUnread: attributes.markedUnread === true,
dontNotifyForMentionsIfMuted:
attributes.dontNotifyForMentionsIfMuted === true,