Fix issue where SMS groups showing up as 'Unnamed Group'.
This commit is contained in:
parent
2924a09936
commit
9c872b6da6
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue