mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-23 18:30:20 +01:00
Add sent story syncing.
This commit is contained in:
@@ -251,7 +251,7 @@ public final class LiveRecipient {
|
||||
|
||||
// TODO [stories] We'll have to see what the perf is like for very large distribution lists. We may not be able to support fetching all the members.
|
||||
if (groupRecord != null) {
|
||||
String title = groupRecord.getName();
|
||||
String title = groupRecord.isUnknown() ? null : groupRecord.getName();
|
||||
List<Recipient> members = Stream.of(groupRecord.getMembers()).filterNot(RecipientId::isUnknown).map(this::fetchAndCacheRecipientFromDisk).toList();
|
||||
|
||||
return RecipientDetails.forDistributionList(title, members, record);
|
||||
|
||||
Reference in New Issue
Block a user