mirror of
https://github.com/oxen-io/session-android.git
synced 2025-06-09 02:18:34 +00:00
Fix issue where SMS groups showing up as 'Unnamed Group'.
This commit is contained in:
parent
2924a09936
commit
9c872b6da6
@ -193,7 +193,7 @@ public final class LiveRecipient {
|
||||
List<Recipient> members = Stream.of(groupRecord.get().getMembers()).filterNot(RecipientId::isUnknown).map(this::fetchRecipientFromDisk).toList();
|
||||
Optional<Long> avatarId = Optional.absent();
|
||||
|
||||
if (settings.getGroupId() != null && GroupUtil.isMmsGroup(settings.getGroupId()) && title == null) {
|
||||
if (settings.getGroupId() != null && !GroupUtil.isMmsGroup(settings.getGroupId()) && title == null) {
|
||||
title = unnamedGroupName;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user