mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
Don't display unknown sender footer for group messages
// FREEBIE
This commit is contained in:
parent
1b2f52209d
commit
1252b3ca00
@ -431,7 +431,7 @@ public class ConversationFragment extends Fragment
|
||||
setLastSeen(loader.getLastSeen());
|
||||
}
|
||||
|
||||
if (!loader.hasSent() && recipient.getName() == null) {
|
||||
if (!loader.hasSent() && !recipient.isGroupRecipient() && recipient.getName() == null) {
|
||||
getListAdapter().setHeaderView(unknownSenderView);
|
||||
} else {
|
||||
getListAdapter().setHeaderView(null);
|
||||
|
Loading…
Reference in New Issue
Block a user