mirror of
https://github.com/oxen-io/session-android.git
synced 2025-10-20 06:43:54 +00:00
Don't display unknown sender footer for group messages
// FREEBIE
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user