refactor: use simpler way to generate closed group profile pictures, limit the getConversation call in MentionManagerUtilities.kt to 200 to improve link-through performance to v2 conversation activity. fix notify type not being preloaded into settings

This commit is contained in:
jubb
2021-08-03 13:35:38 +10:00
parent dd01b2968f
commit 9b48d5d203
7 changed files with 80 additions and 73 deletions

View File

@@ -153,6 +153,7 @@ public class Recipient implements RecipientModifiedListener {
this.profileSharing = stale.profileSharing;
this.unidentifiedAccessMode = stale.unidentifiedAccessMode;
this.forceSmsSelection = stale.forceSmsSelection;
this.notifyType = stale.notifyType;
this.participants.clear();
this.participants.addAll(stale.participants);
@@ -180,6 +181,7 @@ public class Recipient implements RecipientModifiedListener {
this.profileSharing = details.get().profileSharing;
this.unidentifiedAccessMode = details.get().unidentifiedAccessMode;
this.forceSmsSelection = details.get().forceSmsSelection;
this.notifyType = details.get().notifyType;
this.participants.clear();
this.participants.addAll(details.get().participants);