Backups: Handle groupV2 notifications

This commit is contained in:
Scott Nonnenberg 2024-04-30 06:24:21 -07:00 committed by GitHub
parent 4c4ab306eb
commit 5df8924197
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 4563 additions and 301 deletions

View file

@ -143,6 +143,12 @@ export function getNotificationDataForMessage(
);
const changes = GroupChange.renderChange<string>(change, {
checkServiceIdEquivalence: (left, right) => {
return (
window.ConversationController.get(left) ===
window.ConversationController.get(right)
);
},
i18n: window.i18n,
ourAci: window.textsecure.storage.user.getCheckedAci(),
ourPni: window.textsecure.storage.user.getCheckedPni(),